Input a number. Show the tenth multiple of the number. in python
Answers
Answered by
1
Answer:
print("Enter the number")
n=int(input())
print(n*10)
Explanation:
output:
Enter the number
7
70
>
Similar questions