Cod sursa(job #1468066)
| Utilizator | Data | 5 august 2015 10:37:11 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <fstream>
using namespace std;
ifstream fin("a+b.in");
ofstream fout("a+b.out");
int main()
{
int a,b ,s=0;
fin>>a>>b ;
s=a+b;
fout<<s;
fin.close();
fout.close();
return 0;
}
