#include <iostream>
#include <string>
usingnamespace std;
int main()
{
cout << "Please enter your name" << endl;
string name;
cin >> name;
cout << "Hello, " << name << endl;
cout << "Please select your race \n 1.Human\n 2. Elf\n 3.Dwarf\n 4.Ogre\n enter 1, 2, 3, 4 for your choice";
int race;
cin >> race;
if (race == 1)
{
cout << "Hello, " << name << "You selected choice number " << race << "so you are a human\n";
cout << "The weapons available to the level one human are: Dagger, Sword, Bow, and Throwing Daggers\n";
cout << "Type stats to see the stats for each weapon\n";
cout << "Or type the weapon you want to choose";
string weapon;
cin >> weapon;
if (weapon == 'Dagger')
{
cout << "Hello, " << name << "you are a human,\n Level 1\n Weapon:\n Dagger \n Level: \n 1\n ";
}
}
}