Cod sursa(job #904302)
Utilizator | Data | 4 martie 2013 08:19:14 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
long long a, b;
f >> a >> b;
g << a+b;
}