Cod sursa(job #2497622)

Utilizator BujorelActimelBujor Mihai Alexandru BujorelActimel Data 23 noiembrie 2019 00:13:24
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
 int x, y;
 ifstream f("adunare.in");
 f >> x >> y;
 ofstream g("adunare.out");
 g << x +y;
 f.close();
 g.close();
    return 0;
}