diff --git a/projects/m1/001-area-of-a-room/python/main.py b/projects/m1/001-area-of-a-room/python/main.py index e69de29bb..82941d5f3 100644 --- a/projects/m1/001-area-of-a-room/python/main.py +++ b/projects/m1/001-area-of-a-room/python/main.py @@ -0,0 +1,11 @@ + +print("insert length in m") +length=float(input()) + +print("insert width in m") +width=float(input()) + +result=length*width + +print("The area of the room is " + str(result) + " sqm") +#prova