Cod sursa(job #2596888)

Utilizator NormalguyBarsan Mihnea Normalguy Data 10 aprilie 2020 16:39:45
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include <fstream>
using namespace std;

ifstream fin("adunare.in");
ofstream fout("adunare.out");

long long st,dr,nr0,nr1,rezultat,a[200000],n,i;
int main() {
int n,b;
fin>>n>>b;
fout<<n+b;


return 0;
}