#include <stdio.h>
int main() {
	int n = 3, m=4;
	printf("Tổng = %d", n+m);
	return 0;
}
