# Reads two numbers from input and typecasts them to int using # list comprehension x, y = [int(x) for x in input().split()]