#Write a program that first reads the number of students in the class, then #reads the grade for each student. The program counts the number of #students who got A (grade 95 and above). size=int(input("enter number of students in the class ")) i=1 count_A=0 while(i<=size): grade=int(input("enter grade ")) if(grade>=95): count_A=count_A+1 i=i+1 if(count_A>0): print("there are", count_A,"students who got A") else: print("nobody got A")