#include int main(void) { int mark; printf("Please input your score:"); scanf("%d",&mark); printf("Your grade: "); if (mark>=90) { printf("A"); } }