Cod sursa(job #678160)

Utilizator albertoHangan Bahner Alberto alberto Data 11 februarie 2012 09:33:25
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
	int a,b,s;
 ifstream fin ("adunare.in");																			
 ofstream fout ("adunare.out");
 fin>>a;
 fin>>b;
 s=a+b;
 fout<<s;
 
	

return 0;
}