Geben Sie zwei Zahlen in Python in einer einzelnen Zeile ein

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