Cod sursa(job #1460705)

Utilizator robertstrecheStreche Robert robertstreche Data 13 iulie 2015 17:05:27
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>

using namespace std;

ifstream f("adunare.in");
ofstream g("adunare.out");

int A,B;

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