This commit is contained in:
2022-05-13 21:38:32 +02:00
parent ef3dab16ce
commit 80b482f52f

7
filip.py Normal file
View File

@@ -0,0 +1,7 @@
import sys
a, b = sys.stdin.readline().split(' ')
a = int(a[::-1])
b = int(b[::-1])
print(max((a, b)))