how to input two numbers in a single line in python code example
Example 1: take two numbers as inout in single line in python
x, y = map(int, input().split())
Example 2: input two numbers in python in a single line
inputs = []for i in range(3): # loop 3 times inputs.append(input())
Example 3: multiple line input python
lines = []
while True:
line = input()
if line:
lines.append(line)
else:
break
text = '\n'.join(lines)