var1=54
var2=76
print(100*(str(var1+var2)))
output comes to be:
130130130130130130130130130130130130130130130130130130130130130130130130130130......
My question is how to write the answer in different lines like:
130
130
.
.
I tried using this command:print(100*(str(var1+var2)\n))
But it's not correct.