Exerpad
Exercise 6 · Chapter: Input & Type ConversionRequired+50 XP

Fix the Conversion

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

Example input: 5 Expected output: 10

Need a hint?
3 available · costs 5 XP each
python
number = input()
result = number * 2
print(result)
Output
Run your code to see the output here.