Write A Python Program to Calculate The Square Of A Number Entered By The user?
Write A Python Program to Calculate the Square Of A Number Entered By The user?
num = int(input("Enter The Number :"))
Square =(num**2)
print("The Square Of The ",num,"is :",Square)
Comments
Post a Comment