Cod sursa(job #733552)
Utilizator | Data | 12 aprilie 2012 14:54:43 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.16 kb |
#include<fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main() {
int a,b;
in >> a >> b;
out << a + b;
return 0;
}