school

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

area.py (180B)


      1 def area(length, height):
      2     return length * height
      3 
      4 length = int(input("the length of the shape: "))
      5 height = int(input("the height of the shape: "))
      6 
      7 print(area(length,height))