Cod sursa(job #270462)
Utilizator | Data | 4 martie 2009 00:38:46 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<fstream>
#include<iostream>
std::ifstream fin("adunare.in");
std::ofstream fout("adunare.out");
int main(void)
{
long long a,b;
fin>>a>>b;
fout<<a+b;
return 1;
}