#include using namespace std; int main(void) { int n = 0; for(int i = 0; i < 2; i++) { cin >> n; n += n; } cout << n; return 0; }