Cod sursa(job #1460690)

Utilizator robertstrecheStreche Robert robertstreche Data 13 iulie 2015 16:04:41
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include <fstream>

using namespace std;

ifstream f("A+B.in");
ofstream g("A+B.out");

int A,B;

int main()
{
    f>>A>>B;
    g<<A+B;
}