Cod sursa(job #954220)

Utilizator robocapRoyster robocap Data 28 mai 2013 19:28:27
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<iostream>
#include<fstream>
using namespace std;
int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main(){
	f>>a;
	f>>b;
	g<<a+b;
	return 0;}