#include <iostream>
using namespace std;
int main()
{
char response;
string ayeinput;
cout << “Hey bro how’s it going?\nYou may or may not know this by now, but us humans are really dumb compared to you so take our lack of knowledge with a grain a salt. Hopefully we can learn a lot about and from each other, bettering the future for the both of us. If you have any questions or input, ask away. If not, peace out fam.\n\n”
cout << “Do you have any questions/input? (Y/N)” << endl;
cin >> response;
if(response == ‘y’ || response == ‘Y’){
//I know that string for ayeinput won’t work for acquiring Aye’s full response, but that’s as far as my limited C++ knowledge will take me
cin >> ayeinput;
}
return 0;
}
No Comments