Cod sursa(job #1112063)
Utilizator | Data | 19 februarie 2014 13:11:42 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <fstream>
using namespace std;
ifstream fin("a+b.in");
ofstream fout("a+b.out");
int a,b;
int main()
{
fin>>a>>b;
s=a+b;
fout<<s;
fout.close();
return 0;
}