Cod sursa(job #470932)

Utilizator StefanRLNReu Stefan StefanRLN Data 16 iulie 2010 10:10:21
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>

using namespace std;

int main()
{
 fstream in("A+B_in.txt",ios::in);
 fstream out("A+B_out.txt",ios::out);
 int a,b;
 in>>a>>b;
 out<<a+b;
 return 0;
}