fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int a=10,b=15,c=20,sum=(a+b)*c;
  5. printf("%d %d %d &\n %d",a,b,c,sum );
  6.  
  7.  
  8. }
Success #stdin #stdout 0s 5528KB
stdin
Standard input is empty
stdout
10 15 20 &
 500