6 lines
80 B
Python
6 lines
80 B
Python
a = int(input("Enter a number: "))
|
|
c = 1
|
|
while (c <= 10):
|
|
print(a * c)
|
|
c += 1
|