Cod sursa(job #878369)

Utilizator helmutSiegel Helmut helmut Data 14 februarie 2013 13:39:38
Problema Ubuntzei Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include<iostream>
#include<fstream.h>
using namespace std;
int main(){
	int x;
	ifstream f("ubuntzei.in");
	f>>x;
	f.close();
	ofstream g("ubuntzei.out");
	g<<x;
	g.close();
	return 0;
}