提交时间:2026-03-05 20:21:57

运行 ID: 84995

#include<iostream> using namespace std; int main(){ int n,m; cin>>n>>m; n=n>m?n:m; cout<<n; return 0; }