Cod sursa(job #361311)
Utilizator | Data | 4 noiembrie 2009 16:42:38 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<iostream.h>
#include<fstream>
using namespace std;
int main()
{ifstream q ("A+B.in");
ofstream w ("A+B.out");
int a,b;
q>>a>>b;
w<<a+b;
return 0;
}