Cod sursa(job #2130114)

Utilizator prinnexDiyar Mert Daniel prinnex Data 13 februarie 2018 14:04:05
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");

int main()
{
  long a,b;
  fin >> a>> b;
  fout << a + b;
}