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 3d83573 commit cf6bd45Copy full SHA for cf6bd45
NP94.py
@@ -0,0 +1,8 @@
1
+def cal(x, y):
2
+ return int(x) - int(y)
3
+
4
+x = int(input())
5
+y = int(input())
6
7
+print(cal(x, y))
8
+print(cal(y, x))
0 commit comments