Cod sursa(job #1365908)

Utilizator snikerspopescu snikers Data 28 februarie 2015 16:37:41
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include<fstream>
using namespace std;
int main()
{
    ifstream fin("a+b.in");
    ofstream fout("a+b.out");
   long long a,b;
   fin>>a;
   fin>>b;
   fout<<a+b;
   return 0;
}