Cod sursa(job #1464004)

Utilizator DavidLDavid Lauran DavidL Data 22 iulie 2015 00:22:01
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
    int a,b;
    ifstream fin("adunare.in");
    ofstream fou("adunare.out");
    fin>>a>>b;
    fou<<a+b;
    fin.close();
    fou.close();
    return 0;
}