Write a function called double(n) that returns n * 2.
double(n)
n * 2
Read a number from the user and print the doubled value.
Example:
Input:
5
Output:
10