a= int(input('Multiplication: '))
print(end="")
b= int(input(' * '))
print(' = ',a*b,end="")
Is there a way to make an input statement in 1 line to get the value of a and b {a] * {b} =
I'm trying to make the input in line with the text and a and b are in between a string