Cod sursa(job #2280340)

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