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