Cod sursa(job #1756356)

Utilizator techzoneAdrian Cucos techzone Data 12 septembrie 2016 18:08:59
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <iostream>
#include <fstream>
using namespace std;

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