summaryrefslogtreecommitdiff
path: root/comp/work/3/isSquare.py
blob: 5dea99065a357ccc13e6c3fbdaad9b9476f6a4ec (plain)
1
2
3
4
5
base = int(input("height: "))
height = int(input("base: "))

if base == height:
	print("its a square")