#include <stdio.h>

int main(void){
	int a = 1;
	int b = 2;
	int c = 3;
	printf("%d + %d + %d = %d", a, b, c, a + b+ c);
}