school

thing1's amazing school repo
Log | Files | Refs | Submodules | README

isSquare.py (103B)


      1 base = int(input("height: "))
      2 height = int(input("base: "))
      3 
      4 if base == height:
      5 	print("its a square")