Cod sursa(job #120958)
| Utilizator | Data | 7 ianuarie 2008 14:00:52 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<iostream.h>
#include<fstream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long a,b,s;
int main()
{
fin>>a;
fin>>b;
s=a+b;
fout<<s;
}