#include <iostream>
using namespace std;
int main()
{
int score = 0;
char answer;
string red = "\033{31m\n";
string green = "\033{32m\n";
string yellow = "\033{33m\n";
string reset= "\033{0m\n";
cout << "to bixer hati ezmune !" << endl;
cout << "pirsa yekem :bersi: hevala heri delal ber dile solan" << endl;
cout << "a)ahin\nb)amina\nc)pirwin\nd)hwler\n:" << endl;
cout << "choose the correct answer " << endl;
cin >> answer;
if (answer == 'a' || answer == 'A')++score;
cout << "\npirsa duyem:gula solan je hez dike ci renga?" << endl;
cout << "a)sor ||nb)kesek \nc)sin\nd) spi\n" << endl;
cout << "komabersive te" << endl;
cin >> answer;
if (answer == 'c' || answer == 'C')++score;
cout << "\npirsa seyem:solan hij strane ki dike?" << endl;
cout << "a)azad bedran \nb)xwce\nc)memarerat \nd)hozan dino\n" << endl;
cout << "koma bersive te" << endl;
cin >> answer;
if (answer == 'a' || answer == 'A')++score;
cout << "\koma bersive min:" << score << "out of 3\n" << endl;
if (score == 3)cout << "\n her biji" << endl;
else if (score == 2)cout << "zor bas" << endl;
else if (score == 1)cout << "bas!\n" << endl;
else cout << "tu dixwazi be careka din ceka.\n"<<endl;
system("pause");
return 0;
}