Cod sursa(job #2022510)

Utilizator DragosBledeaDragos Bledea DragosBledea Data 16 septembrie 2017 17:39:45
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>
using namespace std;
ifstream fi("adunare.in");
ofstream fo("adunare.out");
int a,b;
int main()
{
    fi>>a>>b;
    fo<<a+b;
    return 0;
}