Add new file

main
Ferexio 2022-08-02 11:28:44 +00:00
parent 1ee7d96fe1
commit a82b824116
1 changed files with 8 additions and 0 deletions

8
exception_2.py Normal file
View File

@ -0,0 +1,8 @@
while True:
try:
x = int(input("What's x: "))
y = int(input("What's y: "))
break
except:
print("Error")
print(x + y)