Cod sursa(job #1053290)
| Utilizator | Data | 12 decembrie 2013 17:04:52 | |
|---|---|---|---|
| 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;
}