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