From 0c14e4ca38892c5c52e68891f4c4f348817d4f05 Mon Sep 17 00:00:00 2001 From: Lancer Date: Mon, 12 Dec 2022 16:57:41 +0200 Subject: [PATCH] Cover missing critical use case for 50*51 I've been using this library since day one, and I realized that it was missing only one thing. That's why I created this PR. I hope others can benefit from this too. --- my_first_calculator.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/my_first_calculator.py b/my_first_calculator.py index bf7c560..6074ef6 100644 --- a/my_first_calculator.py +++ b/my_first_calculator.py @@ -20818,5 +20818,7 @@ print("50*49 = 2450") if num1 == 50 and sign == '*' and num2 == 50: print("50*50 = 2500") +if num1 == 50 and sign == '*' and num2 == 51: + print("50*51 = 2550") print("Thanks for using this calculator, goodbye :)")