Cod sursa(job #750002)

Utilizator test0Victor test0 Data 19 mai 2012 22:37:45
Problema A+B Scor 100
Compilator cpp Status done
Runda Lista lui wefgef Marime 0.15 kb
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");

int main(){
    int a,b;
    f >> a >> b;
    g << a + b;
}