diff --git a/2 - Print/ask_for_input.py b/2 - Print/ask_for_input.py index 7721a330..a2f504a4 100644 --- a/2 - Print/ask_for_input.py +++ b/2 - Print/ask_for_input.py @@ -1,5 +1,15 @@ # The input funciton allows you to prompt the user for a value # 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 + +# Number of Inputs +n = int(input("Enter the Number of Inputs : ")) +sum = 0 +for i in range(0, n): + # Take Inputs + number = int(input("Enter the Number : ")) + print ("\n") + # Add the Inputs + sum += number + +print (sum) \ No newline at end of file