Exerpad
🔥0
0 XP
Lv.1 Beginner
Log In

Fix the Conversion

This program should double a number, but it doesn't convert the input. Fix it!

Example input: 5 Expected output: 10

💡 Hints

?Hint 1
🔒Hint 2
🔒Hint 3
python
number = input()
result = number * 2
print(result)