I want to output 5 * 2 = 10 but python output is 55! How do I resolve this problem?
a = 0
b = 2
a = input("a? :") #(get 5 as input)
c = a * b
print (c)
This is my code. when I input a number it repeat same number I entered two times insterd of showing multipiy it. What do I have to do to solve this?