1case = int(input()) 2 3import random 4 5a = random.randint(0, 2 ** 31 - 1) 6b = random.randint(0, 2 ** 31 - 1) 7 8print("{} {}".format(a, b)) 9 10