def store_nums(): input_str = input() return [int(num) for num in input_str.split()] print(store_nums())