Cod sursa(job #1948214)

Utilizator MariusTestBroboana Marius MariusTest Data 31 martie 2017 21:15:57
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <fstream>
using namespace std;

ifstream fin("Adunare.in");
ofstream fout("Adunare.out");

int a, b, s;

int main(){
    fin >> a >> b;
    s = a + b;
    fout << s;
    fin.close();
    fout.close();
    return 0;
}