Cod sursa(job #563231)

Utilizator Boot.cfgCondescu Lucian Boot.cfg Data 24 martie 2011 20:07:07
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<iostream.h>
#include<fstream.h>
int a,b,s;
fstream f("adunare.in",ios::in);
fstream g("adunare.out",ios::out);
int main(){
	f>>a;
	f>>b;
	s=a+b;
	g<<s;}