#include <iostream>
using namespace std;

int main() {
	const int k1 = 10;
	constexpr int k2 = 2*k1;
	cout << k2 << '\n';
	return 0;
}