#include<stdio.h>
int main()
{
a = 3;
b = 4;
printf("%d",a++,++b);
}