fork(1) download
  1. // your code goes here
  2.  
  3.  
  4.  
  5. let resultString = ""; // एक खाली स्ट्रिंग बनाएं
  6.  
  7. for (let i = 0; i < 3; i++) { // बाहरी लूप
  8. for (let j = 0; j < 3; j++) { // आंतरिक लूप
  9. resultString += `(${i},${j}) `; // स्ट्रिंग में वैल्यूज जोड़ें
  10. }
  11. }
  12.  
  13. console.log(resultString); //
Success #stdin #stdout 0.03s 18880KB
stdin
Standard input is empty
stdout
(0,0) (0,1) (0,2) (1,0) (1,1) (1,2) (2,0) (2,1) (2,2)