Cod sursa(job #928608)

Utilizator teoceltareconstantin teodor teoceltare Data 26 martie 2013 16:01:49
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include<fstream>
using namespace std;
int main(){
int a,b;
ifstream f1("adunare.in");
ofstream f2("adunare.out");
f1>>a;
f1>>b;
f2<<a+b;
}