Post

@PythonPr Answer: 44444
int(b) converts b, but a stays a string.
And str * int doesn't multiply. It repeats.
'4' * 5 = '44444'
For beginners: want math? Convert both.
int(a) * int(b) = 20
English

@PythonPr 44444
int(b) will typecast it to integer value
a is string
when a string is multiplied by integer it actually repeats that much times
English

















