We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b030528 commit 1ced643Copy full SHA for 1ced643
add_two_number.py
@@ -0,0 +1,17 @@
1
+user_input = (input("type type 'start' to run program:")).lower()
2
+
3
+if user_input == 'start':
4
+ is_game_running = True
5
+else:
6
+ is_game_running = False
7
8
9
+while (is_game_running):
10
+ num1 = int(input("enter number 1:"))
11
+ num2 = int(input("enter number 2:"))
12
+ num3 = num1+num2
13
+ print(f"sum of {num1} and {num2} is {num3}")
14
+ user_input = (input("if you want to discontinue type 'stop':")).lower()
15
+ if user_input == "stop":
16
17
0 commit comments