Cod sursa(job #3257289)

Utilizator dragospetrea533dragos petrea dragospetrea533 Data 17 noiembrie 2024 12:19:15
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda teme_upb Marime 0.54 kb
/******************************************************************************

                              Online C++ Compiler.
               Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.

*******************************************************************************/

#include <iostream>
#include <fstream>
using namespace std;
int main()
{
    ifstream fin ("adunare.in");
    ofstream fout ("adunare.out");
  int a,b;
  fin>>a>>b;
  fout<<a+b;

    return 0;
}