Cod sursa(job #275114)
| Utilizator | Data | 10 martie 2009 11:12:24 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.22 kb |
#include<iostream>
#include<fstream>
int main()
{
int a,b,s;
std ::ifstream fin("adunare.in");
std ::ofstream fout("adunare.out");
fin>>a;
fin>>b;
s=a+b;
fout<<s;
fin.close();
fout.close();
return 0;
}
