Cod sursa(job #1709264)

Utilizator XxenoKChiritescu Gabriel XxenoK Data 28 mai 2016 11:31:37
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
    int a,b;
    ifstream  f("adunare.in");
    ofstream of("adunare.out");
    f>>a;
    f>>b;
    of<<a+b;
}