Cod sursa(job #359413)
Utilizator | Data | 26 octombrie 2009 20:45:26 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.45 kb |
/*
Problema: 000
*/
#include<iostream>
#include <fstream>
#include <string>
using namespace std;
int main ()
{
int a,b;
ifstream citire;
citire.open("adunare.in");
citire >> a;
citire >> b;
citire.close();
ofstream scriere;
scriere.open("adunare.out");
scriere << a+b << endl;
scriere.close();
return 0;
//Made by Hascki
}