Cod sursa(job #1781988)

Utilizator Dragos123Tatar Dragos Vlad Dragos123 Data 17 octombrie 2016 18:21:25
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <fstream>
using namespace std;

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

int a, b;
long long s;

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