Cod sursa(job #1784419)

Utilizator liogeoLionel Geo Mischie liogeo Data 20 octombrie 2016 00:09:05
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <fstream>

using namespace std;

int main()
{
    ifstream citire("adunare.in");
    ofstream scriere ("adunare.out");
    int a,b;
    citire>>a>>b;
    scriere<< a+b << endl;
    return 0;
}