Cod sursa(job #936208)

Utilizator bogdanpaunFMI Paun Bogdan Gabriel bogdanpaun Data 6 aprilie 2013 01:35:01
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 a,b;
    f>>a;
    f>>b;
    a+=b;
    g<<a;
}