Cod sursa(job #2284215)

Utilizator BeregaTBozga Bogdan BeregaT Data 16 noiembrie 2018 23:27:16
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{ ifstream fin("adunare.int");
ofstream fout("adunare.out");
int a, b, s;
fin>>a>>b;
s=a+b;
fout<<s;
//cout<<s;
    return 0;
}