Cod sursa(job #1453849)

Utilizator ducnthbducnthb ducnthb Data 24 iunie 2015 19:55:10
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.29 kb
#include <fstream>
#include <iostream>
using namespace std;
const char FIN[] = "adunare.in";
const char FOU[] = "adunare.out";

int main()
{
    ifstream cin("FIN");
    ofstream cout("FOU");
    int a, b;
    cin >> a >> b;
    cout << a + b<<'\n';
    cout.flush();
    return 0;
}