Cod sursa(job #82375)
Utilizator | Data | 6 septembrie 2007 19:20:27 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
#include <iostream>
using namespace std;
int main() {
ifstream in("adunare.in");
ofstream out("adunare.out");
int a, b;
in >> a >> b;
out << a+b << endl;
}