Cod sursa(job #1396530)
Utilizator | Data | 22 martie 2015 17:28:38 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream.h>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
long int a,b;
int main()
{
f>>a>>b;
g<<a+b;
return 0;
}