Cod sursa(job #2457815)

Utilizator andreeaiancu12Iancu Andreea andreeaiancu12 Data 18 septembrie 2019 19:32:22
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Lista lui wefgef Marime 0.23 kb
#include <iostream>
#include<fstream>
using namespace std;
ifstream f("cmmdc.in");
ofstream g("cmmdc.out");
int a,b;
int suma(int a,int b)
{
    int s=0;
    s=a+b;
}
int main()
{
    f>>a>>b;
    g<<suma(a,b);
}