#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,19
10,20
20,20
19,19