View Code of Problem 132

#include "iostream"
#include "stdio.h"
using namespace std;

int main(){
    double a,b;
    while (scanf("%lf %lf",&a,&b)!=EOF){
        double c=a+b;
        cout<<c<<endl;

    }
}

Double click to view unformatted code.


Back to problem 132