From 83d4d417f573e014c507c71c69fbe79bcca24a80 Mon Sep 17 00:00:00 2001 From: Tushar Date: Tue, 18 May 2021 13:16:31 +0530 Subject: [PATCH] modification in Calculation.py --- calculation.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/calculation.py b/calculation.py index 8db7c99..4020669 100644 --- a/calculation.py +++ b/calculation.py @@ -1,2 +1,6 @@ def calcArea(length, width): - return length * width \ No newline at end of file + return length * width +length=int(input()) +width=int(input()) +area=calcArea(length,width) +print(area)