Print Command
a = 7
b = 5
print(str(a) + str(b))
Output?
12
75
7 5
7+5
Check
Check
<