Cod sursa(job #672174)

Utilizator dianah96Hatmanu Diana dianah96 Data 1 februarie 2012 18:17:39
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<iostream.h>
#include<fstream.h>
int main()
{
	ifstream f("date.in");
	ofstream g("date.out");
int a,b,s=0;
f>>a>>b;
s=a+b;
g<<s;
return 0;
}