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