#include<stdio.h>
int main()
{
    int a,b;
    a=10;
    b=5;
    printf("%d",a++ , ++b);
    return 0;
}