Cod sursa(job #886744)

Utilizator bompaflaviuBompa Flaviu bompaflaviu Data 23 februarie 2013 10:52:56
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include<iostream.h>
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");

int main()
	{int a,b,s;
	f>>a>>b;
	s=a+b;
	g<<s;
	f.close();
	g.close();
	return 0;
	}