#include <iostream>
using namespace std;

int main() {
	int n;
	cin >> n;
	if (n==9){
		cout << "n is greather than 9";
		
	}else cout << "n is not 9";
	// your code goes here
	return 0;
}