We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfeb50f commit 60e6835Copy full SHA for 60e6835
demo/origin-file.py
@@ -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