Cod sursa(job #3256248)

Utilizator MutewithFoxmutewithfox MutewithFox Data 13 noiembrie 2024 21:28:42
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <bits/stdc++.h>
using namespace std;
 
int main()
{
    ifstream fin;
    ofstream fout;
    fin.open("adunare.in");
    fout.open("adunare.out");
    int a,b;
    fin>>a>>b;
    fout<<a+b;
    return 0;
}