To input a number and print it's square
Answers
Answered by
0
Answer:
Hey! This program is in python...
x = int(input("Enter a number: "))
print("Square of", x, '=', x**2)
# HOPE THIS HELPS YOU!!
Similar questions