Run ID:149726

提交时间:2026-03-16 16:50:43

#include <bits/stdc++.h> using namespace std; int main(){ int v, b; cin >> v >> b; if (v > b) { cout << "max=" << v; } else { cout << "max=" << b; } return 0; }