87. Python Program to Print Multiples of given number upto 200.
How does this program work?
- This program is used to print multiples of given number upto 200 using Python.
Here is the code
a = int(input( "Enter a number: "))
print(a," Multiples upto 200 :")
for i in range (1,200):
if(i % a == 0):
print(i, end=' ')
i += 1