Cod sursa(job #1492330)

Utilizator Mihnea1Poitasu Mihnea Valentin Mihnea1 Data 27 septembrie 2015 16:26:37
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.3 kb
//Mihnea Valentin Poitasu
//Legat de intrebarea dvs. , unele exercitii sunt ok , celelalte sunt mai grele
#include <fstream>

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