Cod sursa(job #741578)

Utilizator SalazarUCJBreaz Valentin SalazarUCJ Data 26 aprilie 2012 15:26:24
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>
using namespace std;

ifstream f("adunarea.in");
ofstream g("adunarea.out");

int a,b,c;

int main (){
	f>>a;
	f>>b;
	c=a+b;
	g<<c;
}