Cod sursa(job #1932051)

Utilizator oldatlantianSerban Cercelescu oldatlantian Data 19 martie 2017 15:25:59
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <bits/stdc++.h>
using namespace std;

ifstream fi("adunare.in");
ofstream fo("adunare.out");

int main() {
    int a, b;

    fi >> a >> b;
    fo << a + b << '\n';

    return 0; }