View Code of Problem 132

#include <stdio.h>
int main()
{
        double a,b;
        while((scanf("%lf %lf",&a,&b))!=EOF)
        {
                printf("%lf\n",a+b);

        }
        return 0;
}

Double click to view unformatted code.


Back to problem 132