Skip to content

Commit a704b30

Browse files
authored
Add files via upload
1 parent 638b9d0 commit a704b30

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

Filip/Filip – Kattis, Kattis.pdf

83.1 KB
Binary file not shown.

Filip/Filip.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
def greater(a,b):
2+
a = int(a[::-1])
3+
b = int(b[::-1])
4+
if a > b:
5+
return a
6+
else:
7+
return b
8+
9+
10+
a,b = input().split()
11+
print(greater(a,b))

0 commit comments

Comments
 (0)