#include <iostream>                                                             

int main()                                                                      
{                                                                               
    bool someValue = true;                                                      
    int x = 10, y = 10;                                                         

    someValue ? ++x, ++y : (--x, --y);

    std::cout << x << " " << y << std::endl;                                           
    return 0;                                                                   
}