#include <iostream> using namespace std; int main() { int a = 10, b = 20; int res = a > b ? a++ : b++; cout << res << "," << b << endl; return 0; }
20,21
20,20
21,21
10,20