#include <iostream>

constexpr int foo(int x)
{
    return 2 * x;
}

int main()
{
    int x = 0;
    std::cin >> x;
    std::cout << foo(x);
}