You are on page 1of 1

#include<iostream>

using namespace std;


int main()
{
char name;
char description [5];
cout << "Hello! What is your name? :)";
cin >> name;
cout << "I would like you to know that you are ";
cout << "Awesome";
cout<< "Bashful";
cout<< "Charming";
cout<< "Decent";
cout<< "Exciting";
cout<< "Fair";
cout<< "Great";
cout<< "Healthy";
cout<< "Ideal";
cout<< "Joyful";
cout<< "Known";
cout<< "Likeable";
cout<< "Meaningful";
cout<< "Neat";
cout<< "Obedient";
cout<< "Polite";
cout<< "Quiet";
cout<< "Resourceful";
cout<< "Skilful";
cout<< "Talented";
cout<< "Unafraid";
cout<< "Vibrant";
cout<< "Wonderful";
cout<< "Xenophobic";
cout<< "Youthful";
cout<< "Zaftig";
cout << ".";
system ("pause");
}

You might also like