#include <iostream>

int main() {
	signed char c = 127;
	c += 255;
	std::cout << int(c) << '\n';
}