Square Finder Python

a = int(input("Enter the number to find square: "))
print("square of your number is: ",a**2)
Coding boy Hasya