/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
int main()
{
int score;
char grade;
printf("학생의 점수를 입력하세요: ");
scanf("%d", &score);
grade = (score >= 90) ? 'A':
(score >= 80) ? 'B':
(score >= 70) ? 'C':
(score >= 60) ? 'D' : 'F';
printf("학점: %c\n", grade);
return 0;
}