Computer Science, asked by priyankadixit0308, 1 month ago

Input a number. Show the tenth multiple of the number. in python​

Answers

Answered by KesavanCSE
1

Answer:

print("Enter the number")

n=int(input())

print(n*10)

Explanation:

output:

Enter the number

7

70

>

Similar questions