x, y = input("Enter a two value: ").split()
print("Number of boys: ", x)
print("Number of girls: ", y)
print()
#two input in one line python
X, N = [int(x) for x in input().split()]
lines = []
while True:
line = input()
if line:
lines.append(line)
else:
break
text = '
'.join(lines)
# taking multiple inputs at a time separated by comma
x = [int(x) for x in input("Enter multiple value: ").split(",")]
print("Number of list is: ", x)
inputs = []for i in range(3): # loop 3 times inputs.append(input())
x, y = input().split()