Номер 18 #include void main() { int a, b; std::cin >> a >> b; if (a < b) { a = b; } else { b = a; } return; }