#include <stdio.h>
int main() {
	int B=1, C=3, D=4;
	printf("Phép tính=%d\n", B+C*D);
	return 0;
}