Cod sursa(job #1170346)

Utilizator llamacornOmera Buhai llamacorn Data 13 aprilie 2014 12:25:29
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
    int a,b,s;
    ifstream f("adunare.in");
    f>>a>>b;
    s=a+b;
    ofstream g("adunare.out");
    g<<s;
    return 0;
}