Cod sursa(job #516242)
Utilizator | Data | 23 decembrie 2010 14:07:32 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
// Training.cpp : Defines the entry point for the console application.
//
#include "fstream"
#include "iostream"
int main () {
int a, b;
ifstream in("adunare.in");
ofstream out("adunare.out");
in >> a;
in >> b;
out << a + b;
}