Cod sursa(job #1482142)
Utilizator | Data | 6 septembrie 2015 16:41:39 | |
---|---|---|---|
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()
{
long int a,b;
ifstream fi("adunare.in");
ofstream fo("adunare.out");
fi>>a>>b;
fo<<a+b;
fi.close(); fo.close();
return 0;
}