#include using namespace std; int main() { int t; cin >> t; getchar(); for (int i = 0; i < t; i++) { char str[256]; fgets(str, sizeof(str), stdin); int n; sscanf(str, "Hitsuji ga %d hiki", &n); printf("Hitsuji ga %d hiki\n", n+1); } return 0; }