Программирование с++
#include int main() { int a, b; std::cin >> a >> b; std::cout << ((a < b) ? (1) : (2));<br> return 0; }