#include<iostream>
using namespace std;
class Student{
    string name;
    double cg;
    public:
    Student(string n="", double c=0.0): name(n), cg(c){}
    
    bool operator>(Student s){
        return cg>s.cg;
    }
    bool operator==(Student s){
        return cg==s.cg;
    }
    
};

int main(){
    Student s1("Nadim", 3.80);
    Student s2("Nafi", 3.70);
    if(s1>s2){
        cout<<"Nadim will be project leader\n";
    }
    else if(s1==s2){
        cout<<"Both will be leader\n";
    }
    else{
        cout<<"Nafi will be leader\n";
    }
}


