Cod sursa(job #2456143)

Utilizator thefox757Valeriu Chiosa thefox757 Data 13 septembrie 2019 19:30:47
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <bits/stdc++.h>
using namespace std;

int main() 
{
	ifstream in;
    ofstream out;
    in.open("adunare.in");
    out.open("adunare.out");
    
    int a,b;
    in >> a >> b;
    out << a+b;
    return 0;
}