Cod sursa(job #2697369)

Utilizator alexisgaming1234Partac Alexis Matei alexisgaming1234 Data 18 ianuarie 2021 13:15:41
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 <iostream>
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main() 
{
    int a, b;
    fin>>a;
    fin>>b;
    int s;
    s = a + b;
    fout<<s;
    return 0;
}