Cod sursa(job #710155)

Utilizator vlad244Saioc Vlad vlad244 Data 9 martie 2012 08:37:53
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream>
using namespace std;
int main()
{int a,b;
 ifstream f ("adunare.in");
 f>>a>>b;
 ofstream g ("adunare.out");
 g<<a+b;
 f.close();
 g.close();
 return 0;}