Cod sursa(job #1075752)

Utilizator MDalleeOlteanu Madalina MDallee Data 9 ianuarie 2014 15:33:00
Problema A+B Scor 0
Compilator cpp Status done
Runda teme_upb Marime 0.2 kb
#include <iostream>
#include <fstream>

namespace std;

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