提交时间:2024-01-23 16:50:33

运行 ID: 125372

#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; if(a==1&&b<=1){ cout<<8; } else if(a==1&&b>1){ cout<<8+b-1); } else if(a==0&&b<=1){ cout<<10; } else if(a==0&&b>1){ cout<<10+(2*(b-1)); } return 0; }