fork download
  1. #include <stdio.h>
  2. int main () {
  3. int a,b,c,d,e;
  4. a=10,b=5,c=5,d=10;
  5. e = (a+b/c)*d;
  6. printf("%d", e);
  7. return 0;
  8. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
110