fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) { float a,b,c;
  4. scanf("%f%f",&a,&b);
  5. c=a+b;
  6. printf("print the number of sum=%f",c);
  7. // your code goes here
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5320KB
stdin
5.96
3.28
stdout
print the number of sum=9.240000