Drop links or images here to add them to the editor.

Double Function

Create a function named doble.

The function must receive an integer and return twice that number.

Required function

int doble(int x)

Input

An integer.

Output

Twice the number.

Examples

Input:

5

Output:

10

Input:

0

Output:

0