Cod sursa(job #1540756)

Utilizator VictorNNNegrean Victor VictorNN Data 3 decembrie 2015 10:39:04
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>
 
using namespace std;
 
int main()
{
    ifstream inf ("adunare.in");
    ofstream outf ("adunare.out");
     
    int a, b;
    inf >> a >> b;
    outf << a + b;
}