Cod sursa(job #480304)

Utilizator bastiboy31bastian vlad bastiboy31 Data 27 august 2010 13:34:13
Problema A+B Scor 100
Compilator cpp Status done
Runda Lista lui wefgef Marime 0.21 kb
#include <fstream>
using namespace std;
int main(){
    int a, b;
    ifstream i("adunare.in");
    i>>a>>b;
    ofstream o("adunare.out");
    o<<(a+b);
    i.close();
    o.close();
    return 0;
}