Cod sursa(job #2244231)

Utilizator jbgvdjbfBunea Alex jbgvdjbf Data 22 septembrie 2018 14:22:38
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()
{
    ifstream f("adunare.in");
    ofstream f2("adunare.out");
    int a,b;
    f>>a>>b;
    f2<<a+b;
    return 0;
}