#include <stdio.h>

int main(void) {
int a = 10, b = 20;
printf("%d + %d %c %d\n", a, b, '=', a + b);
	return 0;
}
