Cod sursa(job #2280341)

Utilizator vladadAndries Vlad Andrei vladad Data 10 noiembrie 2018 14:40:12
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.22 kb
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int x, y;
int suma(int x, int y)
{
    return x+y;
}
int main()
{
    f>>x>>y;
    g<<suma(x, y);
    return 0;
}