Cod sursa(job #969784)

Utilizator PitiquMerdescu Razvan Pitiqu Data 5 iulie 2013 13:09:35
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.32 kb
// Adunare Simpla.cpp : Defines the entry point for the console application.
//

//#include "stdafx.h"
#include <fstream>
#include <conio.h>

using namespace std;

int main()
{
 
    ifstream f("adunare.in");
    ofstream g("adunare.out");
    int a,b;
    f>>a>>b;
    g<<a+b;
    return 0;

	getch();
}