#include <stdio.h>

int main(void) {
	int b = 1;
    int res = b++ * b++ * b++;
    printf("%d", res);
	return 0;
}
