Введите два числа в Python в одной строке

inputs = []for i in range(3):  # loop 3 times	inputs.append(input())
Wandering Whale