Double Integer
Submit solution
Points:
1
Time limit:
2.0s
Memory limit:
256M
Problem types
Allowed languages
Python
Write a program that reads one integer and prints double its value.
Input
The input contains one integer, n.
Output
Output n × 2.
Sample Input
4
Sample Output
8
Comments