Cod sursa(job #2332411)

Utilizator bucilamihai.iWNLMihai Cristian bucilamihai.iWNL Data 30 ianuarie 2019 18:44:06
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<bits/stdc++.h>
using namespace std;

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

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