Cod sursa(job #2733996)

Utilizator As932Stanciu Andreea As932 Data 31 martie 2021 11:10:56
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.27 kb
#include <bits/stdc++.h>

using namespace std;

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

long long a, b;

void read(){
    fin >> a >> b;
}

void solve(){
    fout << a + b;
}

int main()
{
    read();
    solve();

    return 0;
}