From 588113105afb4e054b4a3a47f8e307116929bdc3 Mon Sep 17 00:00:00 2001 From: Arnab Gupta <47562772+ar7py@users.noreply.github.com> Date: Wed, 30 Sep 2020 18:11:04 +0530 Subject: [PATCH] Update solutions.py --- solutions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solutions.py b/solutions.py index 082c66a..6c865b8 100644 --- a/solutions.py +++ b/solutions.py @@ -1,6 +1,6 @@ #Declare two variables num1 and num2 and assign it a number value of your choosing. -num1 = 8 -num2 = 3 +num1 =int(input("Enter Any Number:")) +num2 =int(input("Enter Any Number:")) #1. Addition #Add the two variables and store it to a new variable named total.