Write a python program that takes a number and print its square

Write a python program that takes a number and print its square 

number = int(input("Enter the number"))
square = number * number
print(square)


Sample output

Input : 5
Output : 25