You are given number stored in variable with the name number multiply the number stored in the variable by 50 and print the result obtained.
INPUT is the first and the only line of the input contains the number stored in the variable
Constraints 1<=N=> 20
# Store input numbers
n = input('Enter a Number between 1 and 20: ')
n = int(n)
x = 50
# Display the result
print (n * x)
Comments
Leave a comment