Cod sursa(job #181929)

Utilizator amadaeusLucian Boca amadaeus Data 20 aprilie 2008 01:37:02
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <iostream.h>
#include <fstream.h>

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

int main()
{
    int M, N;

    f>>N;
    f>>M;
    g<<M+N;

    return 0;
}