#include <iostream>
#include <string>
using namespace std;
void main() {
string input;
cout << "You are ambushed by a snake! What will you do?";
getline(cin, input);
if(input == "kill snake") {
cout << "You win!";
}
else {
cout << "The snake bites you! You are dead.";
}
}