Cod sursa(job #320878)
Utilizator | Data | 6 iunie 2009 01:44:02 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.17 kb |
#include <fstream>
using namespace std;
int main() {
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a, b;
fin >> a >> b;
fout << (a + b) << "\n";
}