fork(1) download
  1. ??=include <stdio.h>
  2.  
  3. int main(void) ??<
  4.  
  5. int liczba;
  6. const int m='Z'-'O';
  7. const int zero='Z'-'Z';
  8.  
  9. while(scanf ("%d",&liczba)) ??<
  10. printf("%d\n",m*liczba);
  11. if(getchar()==EOF) break;
  12. ??>
  13.  
  14. return zero;
  15. ??>
  16.  
Success #stdin #stdout 0s 9424KB
stdin
3
5
1
stdout
33
55
11