Cod sursa(job #1052928)

Utilizator ShaDoWsiD100Rzv Rzv ShaDoWsiD100 Data 11 decembrie 2013 22:08:12
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
    int x,y;
    f>>x>>y;
    g<<x+y;
    return 0;
}