Cod sursa(job #1870061)
| Utilizator | Data | 6 februarie 2017 12:47:57 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
std::ifstream fin ("adunare.in");
std::ofstream fout ("adunare.out");
int main()
{
long long a,b;
fin>>a>>b;
fout<<a+b;
return 0;
}
