#include <iostream>
using namespace std;
int main() {
string txt = "It\'s alright.";
cout << txt;
return 0;
}