4 19
19
def bigger(a, b): if a > b: return a return b a, b = map(int, input().split()) print(bigger(a, b))