#include using namespace std; typedef long long ll; int main() { int a, b; cin >> a >> b; int ans = min(a, b) * 2; cout << ans << '\n'; return 0; }