#include <stdio.h>

int main() {
	int x;
	scanf("%d",&x);
	if ( x >= 90)
		printf("sクラスです\n");
	else if ( x >= 80)
		printf("Aクラスです\n");
	else if ( x >= 60)
		printf("Bクラスです\n");
	else
		printf("Ｆクラスです\n");
	return 0;
}
