#include <iostream>
using namespace std; // consider removing this line in serious projects

int main(int argc, char** argv){
    printf("Hello");
	return 0;
}