#include <iostream>
using namespace std;
void main()
{
system(
"cls"
);
int a;
cin >> a;
// [ 12 ]
cout << a + a;
// [ 24 ]
getchar();
}