#include<stdio.h>
#include<conio.h>
#include<iostream>
#include<windows.h>


using namespace std;
void HarfNotu(int notlar);
int main(){
double notlar;
cout<<"not giriniz";
   cin>>notlar;
   HarfNotu(notlar);

}





void HarfNotu(int notlar){
	 if(notlar<=100 || notlar>=90,00){
   	cout<<"notunuz: AA "<<endl;
   }
   if(notlar<=89,99 || notlar>=80,00){
   	cout<<"notunuz: BA "<<endl;
   }
   if(notlar<=79,99 || notlar>=70,00){
   	cout<<"notunuz: BB "<<endl;
   }
   if(notlar<=69,99 || notlar>=65,00){
   	cout<<"notunuz: CB "<<endl;
   }
   if(notlar<=64,99 || notlar>=60,00){
   	cout<<"notunuz: CC "<<endl;
   }
   if(notlar<=59,99 || notlar>=55,00){
   	cout<<"notunuz: DC "<<endl;
   }
   if(notlar<=54,99 || notlar>=50,00){
   	cout<<"notunuz: DD "<<endl;
   }
   if(notlar<=49,99 || notlar>=40,00){
   	cout<<"notunuz: FD "<<endl;
   }  
   if(notlar<=39,99 || notlar>0,00){
   	cout<<"notunuz: FF "<<endl;
   } 
   if(notlar==0){
   	cout<<"notunuz F1"; //dešižecek
}
}
