Cod sursa(job #1262534)

Utilizator Vennyspruteanu andrei Vennys Data 13 noiembrie 2014 12:00:27
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <iostream>
#include <fstream>
using namespace std;
ifstream f1 ("adunare.in");
ofstream f2 ("adunare.out");
int main()
{      int a,b;
       f1 >>a;
       f1 >>b;
       f2 <<a+b;
       return 0;
}