Cod sursa(job #2237861)

Utilizator cLwwAlexandru cLww Data 3 septembrie 2018 16:46:47
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
    int a,b,s=0;
    f>>a;
    f>>b;
    s=a+b;
    g<<s;
    f.close();
    g.close();
    return 0;
}