World Languages, asked by AviDG7917, 8 days ago

take values of length and breath of a rectangle from user and check if it is square or not?/ in python

Answers

Answered by Anonymous
6

Answer

if you want programs in Python here is your answer :-

l = int(input("Enter your first number:"))

b = int(input("Enter your second number : "))

if l=b:

prin("Its a square ")

else:

print ("its a rectangle ")

Similar questions