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

int main() 
{
	std::string a = "\x7f";
	std::string b = "\x80";
	
	cout << (a < b) << endl;
	cout << (a[0] < b[0]) << endl;
	// your code goes here
	return 0;
}