summaryrefslogtreecommitdiff
path: root/comp/work/11/area.py
blob: c4e23590393e8c3e49a8be18a7c5d29555a36787 (plain)
1
2
3
4
5
6
7
def area(length, height):
    return length * height

length = int(input("the length of the shape: "))
height = int(input("the height of the shape: "))

print(area(length,height))