Cod sursa(job #889452)

Utilizator mihaiavram96Avram Mihai mihaiavram96 Data 24 februarie 2013 15:25:09
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <iostream>
#include <fstream>

using namespace std;
int a,b;
int main()
{
    ifstream f("adunare.in");
    f>>a>>b;
    cout<<a+b;
    f.close();
    return 0;
}