Cod sursa(job #270463)
Utilizator | Data | 4 martie 2009 00:40:21 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
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 0;
}