Cod sursa(job #1486973)

Utilizator shantih1Alex S Hill shantih1 Data 15 septembrie 2015 20:04:48
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <iostream>
#include <fstream>

using namespace std;

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

int a;
int b;

int main()
{
    fin>>a>>b;

    fout<<a+b<<"\n";



    return 0;
}