fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a = 50;
  5. int f = 30;
  6. int c = 249;
  7.  
  8. a = a<<1;
  9.  
  10. printf ("%d\n%d\n%d",a,f,c);
  11.  
  12.  
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
100
30
249