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

运行 ID: 125368

#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; }