#include<bits/stdc++.h> using namespace std; int main() { int x,y; cin>>x>>y; if(x==1) { cout<<8+(y>1?(y-1)*1:0); } else//0 { cout<<10+(y>1?(y-1)*2:0); } return 0; }