#include #include #include using namespace std; int main(){ int t; cin >> t; vector n(t); for (int i = 0; i < t; i++){ string temp1, temp2, temp3; int ntemp; cin >> temp1 >> temp2 >> ntemp >> temp3; n[i] = ntemp; } for (int i = 0; i < t; i++){ cout << "Hitsuji ga " << n[i]+1 << " hiki" << endl; } }