Cod sursa(job #2014268)
Utilizator | Data | 23 august 2017 12:50:03 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<iostream>
#include<fstream>
using namespace std;
ifsteram f;
ofstream g;
int main(){
f.open("a+b.in");
g.open("a+b.out");
int a,b;
f>>a;
f>>b;
g<<a+b;
return 0;
}