Cod sursa(job #551652)

Utilizator benone11Beniamin benone11 Data 10 martie 2011 22:10:09
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
01.#include<fstream>
02.using namespace std;
03.ifstream f("adunare.in");
04.ofstream g("adunare.out");
05.int a,b,s;
06.int main(){
07.    f>>a;
08.    f>>b;
09.    s=a+b;
10.    g<<s;
11.    g.close();
12.    return 0;
13.}