Cod sursa(job #561984)
Utilizator | Data | 22 martie 2011 08:34:32 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.14 kb |
#include<iostream.h>
#include<fstream.h>
int main ()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
long a,b; f>>a>>b; g<<a+b;
}