Cod sursa(job #1053281)
Utilizator | Data | 12 decembrie 2013 16:58:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include<iostream>
#include<fstream>
using namespace std;
ifstream read("adunare.in");
fstream write ("adunare.out");
long int A,B;
int main()
{
read>>A>>B;
write<<A+B;
read.close();
write.close();
return 0;
}