#include<iostream>
#include<string>
using namespace std;
string trueans, falseans;
int main()
{
bool ans;
trueans = "Hello,World!";
falseans = "it's falseanswer";
ans = true;
if(ans)
cout << trueans << "\n";
else
cout << falseans << "\n";
return 0;
}