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

int main() {
	cout << (typeid(signed char) == typeid(int8_t));
	return 0;
}