#include <iostream>
using namespace std;

class Student {
	public:
	string name;
	string major;
	double gpa;
	Student(string aName, string aMajor, double aGpa) {
		name = aName;
		major = aMajor;
		gpa = aGpa;
	}
	
	bool hasHonors() {
		if(gpa >= 3.2) {
			return true;
		}
		return false;
	}
};

int main() {
	
	Student student1("Linh", "Liberature", 3.8);
	Student student2("My", "Geography", 3.9);
	
	cout << student2.hasHonors();
	
	return 0;
}