提交时间:2026-04-25 21:23:14
运行 ID: 438043
#include <iostream> using namespace std; int main() { long long X,Y; cin>>X>>Y; long long sum=X+Y; if(sum%2==0){ cout<<sum/2<<endl; }else{ cout<<"IMPOSSIBLE"<<endl; } return 0; }