Wejście Dwie liczby w Pythonie w jednej linii

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