For instance,
while True:
variable_a = input()
So, this while loop will keep asking for input.
If I want the first input from users be stored in "variable_a", and the second input be stored in a different variable, let say "variable_b". What should I do without using two input() statements?
Actually I want to compare these two inputs. Like this
if variable_a == variable_b:
print("Yes")
But I don't know how to do that with only one input() statement.