Cod sursa(job #1511766)

Utilizator dragos231456Neghina Dragos dragos231456 Data 27 octombrie 2015 09:20:15
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <iostream>
#include <fstream>
using namespace std;

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