Exerpad

Fix the Concatenation

This program tries to join text and a number, but it crashes. Fix it!

Expected output:

text
Age: 10

Hint: You can't use + to join a string and a number directly.

💡 Hints

?Hint 1
🔒Hint 2
🔒Hint 3
python
age = 10
print("Age: " + age)