diff --git a/2 - Print/ask_for_input.py b/2 - Print/ask_for_input.py index 7721a330..4fecddcb 100644 --- a/2 - Print/ask_for_input.py +++ b/2 - Print/ask_for_input.py @@ -2,4 +2,8 @@ # You need to declare a variable to hold the value entered by the user name = input('What is your name? ') -print(name) \ No newline at end of file +print(name) +number1 = int(input("Please enter first No: ")) +number2 = int(input("Please enter second No: ")) +number3 = number1 + number2 +print(number3)