fork download
  1. #include <stdio.h>
  2. int main () {
  3.  
  4. int tishka = 23;
  5. int tuzik = 228;
  6.  
  7.  
  8. printf ("%d %d", tishka, tuzik);
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
23 228