Printing number using loop @ Dcoder

Problem: Ariel & Eric have a child, help them teaching him Counting from 1 to 10.
Input:
Output: Output should be 1 to 10 separated with a new line character "\n"
Constraints:
Sample Input:
Sample Output:
1
2
3
4
5
6
7
8
9
10

for i in range(1, 11):
  print(i)
H2
H3
H4
3 columns
2 columns
1 column
Join the conversation now
Logo
Center