Some problems give multiple values on one line. Use split() to break them apart: python line = input() parts = line.split() If the user types " ", parts becomes ["10", "20", "30"]. These are still strings.
To convert them all to integers: python numbers = list(map(int, input().split())) This reads a line, splits on whitespace, converts each piece to int, and collects results in a list. It's a common pattern you'll use repeatedly.