#include main() { int x; printf("Enter an integer: "); scanf("%d",&x); if (0 < x < 9) printf("Yay!\n"); else printf("Boo!\n"); } /* main() */