Cod sursa(job #972775)
Utilizator | Data | 12 iulie 2013 17:11:17 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.16 kb |
#include <fstream>
using namespace std;
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
int main() {
int a, b;
fin >> a >> b;
fout << a + b;
}