Cod sursa(job #1977884)

Utilizator dey44andIoja Andrei-Iosif dey44and Data 6 mai 2017 13:30:24
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.26 kb
#include <fstream>

using namespace std;

ifstream in("adunare.in");
ofstream out("adunare.out");


int sum(long nr1, long nr2)
{
    int suma=nr1+nr2;
    out<<suma;
}

int main()
{
    int a, b;
    in>>a>>b;
    sum(a,b);
    return 0;
}