Cod sursa(job #723348)
Utilizator | Data | 25 martie 2012 13:08:31 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream>
using namespace std;
int main(){
int a,b;
ifstream in("AsiB.in");
ofstream out("AsiB.out");
in>>a>>b;
out<<a+b;
in.close();
out.close();
return 0;
}