Cod sursa(job #1256717)

Utilizator Kostel-DraghiciDraghici Costel Kostel-Draghici Data 6 noiembrie 2014 19:53:59
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <iostream>
#include <fstream>

using namespace std;

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