#include <stdio.h>
main() 
{
 	int score ;
 	printf("enter your score: ");
 	scanf("%d",&score);
 	if (score >= 80) 
	 {
 		printf("!!YOU PASSED GOOD JOB!!");
	 } 
	 else if (score >= 60) 
	 {
	    printf ("!YOU PASSED!");
	 } 
	 else if (score <60) {
	    printf ("YOU NOT PASSED TT");
 	 }
	 return 0; 
	 
 }