#include <iostream> using namespace std; int main() { int x = 15, y = 22, z = 0; z = x > y ? x++ : y--; cout << z << endl; return 0; }
22
21
15
16