Cod sursa(job #2183957)

Utilizator belacPhitz Me belac Data 23 martie 2018 17:00:55
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("cufar.in");
ofstream g("cufar.out");
long long a,b,s;
int main()
{
 f>>a>>b;
 s=a+b;
 g<<s;
 return 0;
}