Cod sursa(job #2257060)

Utilizator starboy123Macedon Vlad Andrei starboy123 Data 9 octombrie 2018 16:28:47
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>
int a,b;
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
    fin>>a;
    fin>>b;
    fout<<a+b;
    return 0;

}