Cod sursa(job #1593451)

Utilizator nervuDobre Daniel nervu Data 8 februarie 2016 17:04:46
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
    ifstream f("A+B.in.txt");
    ofstream g("A+B.out.txt");

    int a,b;
    f>>a>>b;
    g<<a+b;
}