Cod sursa(job #1257261)

Utilizator Kostel-DraghiciDraghici Costel Kostel-Draghici Data 7 noiembrie 2014 15:27:35
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;
}