Skip to content

Commit cf6bd45

Browse files
authored
Create NP94.py
1 parent 3d83573 commit cf6bd45

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

NP94.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)