Cod sursa(job #2014263)

Utilizator bebopZaharia Mihai bebop Data 23 august 2017 12:48:00
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include<iostream.h>
#include<fstream.h>
using namespace std;

ifsteram f=f.open("a+b.in");
ofstream g=g.open("a+b.out");

int main(){
	
	int a,b;
	f>>a;
	f>>b;
	g<<a+b;


	return 0;
}