cs/stuff/loops/num3.py

6 lines
80 B
Python
Raw Normal View History

2022-12-13 11:38:55 -05:00
a = int(input("Enter a number: "))
c = 1
while (c <= 10):
print(a * c)
c += 1