#include <iostream> int main() { int a, b, maxNum; std::cin >> a >> b; maxNum = (a > b)? a : b; std::cout << maxNum << std::endl; return 0; }