Cod sursa(job #1050231)

Utilizator Georg1qBeresteanu George Georg1q Data 8 decembrie 2013 13:33:16
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>
using namespace std;
int main()
{
    ifstream f("adunare.in");
    ofstream g("adunare.out");
    int a, b;
    f>>a;
    f>>b;
    g<<a+b;
}