#include <stdio.h>

int main () {
	
	int a = 2147483647;
	int b = 2147483647;
	
	int c = a + b;
	
	printf("Sum = %d\n", c);
	return 0;
}
