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