Skip to content

Commit 60e6835

Browse files
authored
Create origin-file.py
1 parent cfeb50f commit 60e6835

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

demo/origin-file.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# PythonNoMercy demo
2+
print("This is a script for testing PythoNoMercy")
3+
print("Two Sum")
4+
a = input("Number 1 > ")
5+
b = input("Number 2 > ")
6+
try:
7+
print("Sum: "+str(int(a)+int(b)))
8+
except:
9+
print("Invailid number")

0 commit comments

Comments
 (0)