#include main() { int x; printf("your score = "); scanf("%d", &x); if (x >= 60) { printf("You succeeded!\n"); } else { printf("You failed.\n"); } }