Cod sursa(job #1190910)

Utilizator johnjohnJohn John johnjohn Data 25 mai 2014 22:19:12
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>
using namespace std;
int main(){
    int a,b;
    fstream f("adunare.in",ios::in);
    fstream g("adunare.out",ios::out);
    f>>a>>b;
    g<<a+b;
return 0;}