Cod sursa(job #626102)
| Utilizator | Data | 26 octombrie 2011 13:35:31 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream>
using namespace std;
ifstream fin("a.in");
ofstream fout("a.out");
int main()
{
int a,b;
fin>>a>>b;
fout<<a+b;
return 0;
}