fork download
  1.  
  2.  
  3. #include<stdio.h>
  4. int main()
  5. {
  6. int i=2,j=3,k,l;
  7. float a,b;
  8. k = i;
  9. l =k*i;
  10. a =l+k;
  11. b = a*(l+k);
  12. printf("%.2f",b);
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 5300KB
stdin
Standard input is empty
stdout
36.00