Cod sursa(job #1036378)
| Utilizator | Data | 19 noiembrie 2013 12:09:31 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <fstream>
std::ifstream fin("adunare.in");
std::ofstream fout("adunare.out");
int main()
{
long long a, b;
fin>>a>>b;
fout<<(long long)a+b<<'\n';
return 0;
}