Cod sursa(job #2331831)

Utilizator tothalToth Alexandru tothal Data 29 ianuarie 2019 23:18:27
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>
using namespace std;

int main(){
    ofstream fout("ab.out");
    ifstream fin("ab.in");
    long long a,b;
    fin >> a >> b;
    fout << a + b;
}