#include<stdio.h>
int main()
{
    int i=0, k=0, m;
    
    m = ++i || ++k;
    printf("%d, %d, %d\n", i, k, m);
    return 0;
}