how to take two numbers as in same line as input in python

30

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

Comments

Submit
0 Comments