+ 2
Please what's the answer to this.
"5"*4
3 Answers
+ 3
If there was a print() around it then it would output 5555, because when putting parentheses around the 5 you turn it into a string then multiply the string by the integer 4 so you get 5555.
+ 5
5555
+ 3
Alright now I get it.