#include <stdio.h>

int main()
{
    int a = 1, b = 2;

    printf("%d %d\n", a, b);
    printf("%d %d\n", a, a++);

    return 0;
}