Cod sursa(job #1262514)

Utilizator cartofelMunteanu Lucian cartofel Data 13 noiembrie 2014 11:56:01
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 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;
}