From fd0b72e4d1437dba4512a9d6429c0232f6ea11a2 Mon Sep 17 00:00:00 2001 From: manyashetty <102415234+manyashetty@users.noreply.github.com> Date: Sat, 26 Mar 2022 17:45:44 +0530 Subject: [PATCH] Update fix_me.py --- fix_me.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fix_me.py b/fix_me.py index 1506169..534a523 100644 --- a/fix_me.py +++ b/fix_me.py @@ -4,10 +4,10 @@ a= int(input("Enter the first no: ")) b= int(input("Enter the second no: ")) # Divide two numbers -division= a-b +division= a/b # Square of first no. -a = a+a +a = a*a # Square of second no. b = b*b -print("Division",division) \ No newline at end of file +print("Division",division)