#include <iostream>
using namespace std;

int main() {
	
	char pora;  // w, l, j lub z
	
	pora = 'w';
	
	cout << pora << endl;
	
	return 0;
}