Run ID:131630
提交时间:2025-09-30 16:46:55
#include <iostream> //designed by lu 202509-0930 using namespace std; int main(){ int a,b; char c; cin>>a>>c>>b; if(a>b) { cout<<"max="<<a; } else { cout<<"max="<<b; } // cout <<a<<endl; // cout<<b<<endl; return 0; }