Cod sursa(job #3227464)

Utilizator Gergo123Schradi Gergo Gergo123 Data 30 aprilie 2024 21:44:21
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <iostream>
#include <fstream>

using namespace std;

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

int main()
{
    int a,b;
    fin>>a>>b;
    fout<<a+b;
    return 0;
}