Cod sursa(job #2379119)

Utilizator nicolaee2Martinescu Nicolae nicolaee2 Data 12 martie 2019 21:47:58
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.26 kb
#include<iostream>
#include<fstream>
#include<math.h>
#include<cmath>
#include<string.h>
using namespace std;


int main()
{

ifstream fin("adunare.in");
ofstream fout("adunare.out");
long long a,b;
fin>>a>>b;
fout<<a<<'\n'<<b;

    return 0;
}