Cod sursa(job #3202449)

Utilizator UengineDavid Enachescu Uengine Data 11 februarie 2024 16:21:42
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>

using namespace std;

ifstream cin("adunare.in");
ofstream cout("adunare.out");

int main() {
    int x, y;
    cin >> x >> y;
    cout << x + y;
    return 0;
}