#include <iostream>
int doubleNumber(int a)
{
return a * 2;
}
int main()
int a;
std::cin >> a;
std::cout << doubleNumber(a) << std::endl;