This problem introduces a concept we'll cover in depth later: loops. But it's a good opportunity to see how variables interact with iteration. You'll receive an integer N and need to print the square of each number from to N-.
This means printing , , , , ... depending on N. Read the problem statement. The pattern is simple once you see it. We'll use a simple for loop with range().