Cod sursa(job #815528)
Utilizator | Data | 17 noiembrie 2012 10:06:08 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream>
using namespace std;
int main(){
int a,b;
ifstream in("A+B.in");
ofstream out("A+B.out");
in>>a>>b;
out<<a+b;
}