Cod sursa(job #2630960)

Utilizator qpAndreiGradisteanu Andrei qpAndrei Data 28 iunie 2020 12:23:56
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.57 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 <bits/stdc++.h>

using namespace std;

ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
   int a; int b;
   fin>>a;
   fin>>b;
   fin.close();
   fout<<a + b;
   fout.close();

    return 0;
}