New value added to calculator

This commit is contained in:
Luis Amaro 2020-03-02 13:33:14 -03:00 committed by GitHub
parent a7aabeaf49
commit 4cfa2b1f3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 == 50 and sign == '*' and num2 == 51:
print("50*51 = 2550")
print("Thanks for using this calculator, goodbye :)")