Style

Area of a square

 Practice Question #4


#Area of a square

var_1 = int(input("What is the length of the side of the square:- "))
var_2 = var_1 ** 2

print("Area of the square is:- ", var_2)

Output
What is the length of the side of the square:- 34
Area of the square is:-  1156

Comments

Script