From 8ff3525cfe2fa190866f49eeea9940315b549d92 Mon Sep 17 00:00:00 2001 From: chaithanyakj24 <102415275+chaithanyakj24@users.noreply.github.com> Date: Sat, 26 Mar 2022 17:59:47 +0530 Subject: [PATCH] Update fix_me.py division= a-b TO division= a/b --- 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)