#include <iostream>
usingnamespace std;
int main()
{
int num;
bool
cout <<"walked in the woods "<<endl;
cout <<"found a dead dollar "<<endl;
cout <<"what should I do? "<<endl;
cout <<"1:go to the moon, 2:give it to a homeless man, 3:get some ice cream "<<endl;
cin>>num;
if (num==1){
cout << "im the luckiest man in the world!!!!! yaaay "<<endl;
}
if (num==2){
cout <<"may the gods bless your soul "<<endl;
}
if (num==3){
cout <<"enjoy your ice cream "<<endl;
}
}