Cod sursa(job #614569)

Utilizator alex_steopoaieAlex Steopoaie alex_steopoaie Data 6 octombrie 2011 20:49:18
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream>
using namespace std;

int main()
{
	int a,b,s;
	ifstream mata("adunare.in");
	ofstream tata("adunare.out");
	mata>>a>>b;
	s = a + b;
	tata<<s;
	return 0;
}