Cod sursa(job #1185277)

Utilizator MihailPJack ONeill MihailP Data 15 mai 2014 13:48:08
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()
{
    fstream f,g;
    f.open("adunare.in",ios::in);
    g.open("adunare.out",ios::out);
    int a,b;
    f>>a>>b; g<<a+b;
}