| 
 | 
вернуться в форумHint for WA#3 I had WA#3 because of how I was reading the input in C: while (gets(buff) != NULL) {     int i = 0;     while (buff[i] != '\0') {         // process char by char         i++;     } }   Changed to: while ((c = getchar()) != EOF) {     // process char by char }   And it works AC!!!  |  
  | 
|