Read an integer from input and print its double (multiply by ).
Input: A single integer
Output: The integer multiplied by
Example:
- Input:
- Output:
Remember to convert the input to an integer with int(). The input() function always returns a string, so "5" * 2 would give "55", not .