Description ※ Use Standrad input and output to solve this challenge Print a n by m grid of asterisks. Constraints The first line contains 2-separated integers, n and m. 1 ≤ n, m ≤ 1,000 나의 풀이 이 문제는 보자마자 "중첩 for문으로 풀어야겠다"라는 생각이 들었다. process.stdin.setEncoding('utf8'); process.stdin.on('data', data => { const n = data.split(""); const a = Number(n[0]), b = Number(n[1]); let star = '' for(let i = 0;..