#include <iostream>
#include <cstdint>
using namespace std;

int main() {

	unsigned long long int s1;
	s1 = 191689628 + 646033877 + 109099622 + 798412961 + 767677318 + 190145527 + 199698411;
	cout << s1 << endl;

	// long is 64bit in this compiler!
	/*unsigned long int*/uint32_t s2;
	s2 = 191689628 + 646033877 + 109099622 + 798412961 + 767677318 + 190145527 + 199698411;
	cout << s2 << endl;

	s1 = 191689628ULL + 646033877ULL + 109099622ULL + 798412961ULL + 767677318ULL + 190145527ULL + 199698411ULL;
	cout << s1 << endl;

	s2 = 191689628UL + 646033877UL + 109099622UL + 798412961UL + 767677318UL + 190145527UL + 199698411UL;
	cout << s2 << endl;

	return 0;
}