Cod sursa(job #1488466)

Utilizator CerculeteBacila Dan Cerculete Data 19 septembrie 2015 01:26:02
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
    unsigned int x,y,s;
    ifstream f("adunare.in");
    ofstream g("adunare.out");
    f>>x;
    f>>y;
    s=x+y;
    g<<s;
    return 0;
}