Cod sursa(job #458836)

Utilizator milijrCristian Militaru milijr Data 26 mai 2010 16:06:37
Problema A+B Scor 100
Compilator cpp Status done
Runda spad Marime 0.15 kb
#include<fstream>
using namespace std;
int main()
{
	int a,b;
	ifstream fin("adunare.in");
	ofstream fout("adunare.out");
	fin>>a>>b;
	fout<<a+b;
}