Cod sursa(job #1955952)

Utilizator shantih1Alex S Hill shantih1 Data 6 aprilie 2017 13:13:36
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;
}