0
#include <iostream>
using namespace std;
int main()
{
int mark = 100;
if (mark >= 50) {
cout << "passed." << endl;
if (mark == 100) {
cout <<"excellent" << endl;
}
}
else {
cout << "You failed." << endl;
}
return 0;
}