Cod sursa(job #1783730)
Utilizator | Data | 19 octombrie 2016 13:01:52 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.28 kb |
#include <iostream>
#include <conio.h>
#include <fstream>
using namespace std;
int main()
{
ifstream in("adunare.in");
ofstream out("adunare.out");
int n1, n2;
in >> n1 >> n2;
out << n1+n2;
in.close();
out.close();
return 0;
}