0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 00:25:24 +00:00
OI-codes/AcWing/805/805.cpp

17 lines
214 B
C++

#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
int x, y;
int main() {
std::ios::sync_with_stdio(false);
cin >> x >> y;
cout << std::max(x, y) << endl;
return 0;
}