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