Cod sursa(job #1783705)
Utilizator | Data | 19 octombrie 2016 12:49:42 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.27 kb |
#include <bits/stdc++.h>
#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();
}