From 777a7a1a9d4ea898f571bccb5c33cc5381f41d95 Mon Sep 17 00:00:00 2001 From: Serhat Boyraz Date: Mon, 15 May 2023 11:49:24 +0300 Subject: [PATCH] 58*58 added --- my_first_calculator.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/my_first_calculator.py b/my_first_calculator.py index bf7c560..4aa73c4 100644 --- a/my_first_calculator.py +++ b/my_first_calculator.py @@ -20818,5 +20818,7 @@ if num1 == 50 and sign == '*' and num2 == 49: print("50*49 = 2450") if num1 == 50 and sign == '*' and num2 == 50: print("50*50 = 2500") +if num1 == 58 and sign == '*' and num2 == 58: + print("58*58 = 3364") print("Thanks for using this calculator, goodbye :)")