提交时间:2024-11-30 10:45:33
运行 ID: 838
#include<bits/stdc++.h> using namespace std; int main(){ int x; cin>>x; if(x>=100) { cout<<2*100+(x-100); } else { cout<<2*x; } }