fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3. int main()
  4. {
  5. char n[20];
  6. int m;
  7. scanf("%s",n);
  8. scanf("%d",&m);
  9. if(strcmp(n,"c")==0 && m==1)
  10. {
  11. printf("Welcome to CCD!");
  12. printf("\nEnjoy your Espresso Coffee!");
  13. }
  14. if(strcmp(n,"t")==0 && m==9)
  15. {
  16. printf("INVALID OUTPUT!");
  17. }
  18. return 0;
  19. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Standard output is empty