isSquare.py (103B)
1 base = int(input("height: ")) 2 height = int(input("base: ")) 3 4 if base == height: 5 print("its a square")