#include<iostream>
#include<cstring>
using namespace std;
int main()
{
string i_went_to_that_nye_party;
cin>>i_went_to_that_nye_party;
string we_started_talking_again;
if(i_went_to_that_nye_party==”yes”) we_started_talking_again=”yes”;
bool i_skipped_class;
cin>>i_skipped_class;
bool i_met_you;
if(i_skipped_class==1) i_met_you=1;
char i_learned_that_song_by_heart;
cin>>i_learned_that_song_by_heart;
char i_cried_myself_to_sleep;
if(i_learned_that_song_by_heart==’y’) i_cried_myself_to_sleep=’y’;
int you_did_not_kiss_me;
cin>>you_did_not_kiss_me;
int i_met_him;
if(you_did_not_kiss_me==2) i_met_him=1;
float you_did_not_talk_to_me;
cin>>you_did_not_talk_to_me;
float i_left;
if(you_did_not_talk_to_me==100000) i_left=1;
double you_responded;
cin>>you_responded;
double i_found_you_again;
if(you_responded==100000000) i_found_you_again=100000000;
string you_commented_on_my_post;
cin>>you_commented_on_my_post;
string i_hurt_you;
if(you_commented_on_my_post==”yes”) i_hurt_you=”yes”;
bool they_stopped_reminding_me_of_my_desperation_for_attention;
cin>>they_stopped_reminding_me_of_my_desperation_for_attention;
bool i_have_forgotten_you;
if(they_stopped_reminding_me_of_my_desperation_for_attention==0) i_have_forgotten_you=0;
cout<<“forgive me”;
return 0;
}
