Cod sursa(job #257292)

Utilizator mestefyAlexa Stefan - Iuliu mestefy Data 12 februarie 2009 23:38:03
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream.h>
ifstream in("adunare.in");
ofstream out("adunare.out");

int main()
	{
	int a,b,s;
	in>>a>>b;
	s=a+b;
	out<<s;

	in.close();
	out.close();
	return 0;
	}