#include <stdio.h>
#include <stdlib.h>
#include <math.h>

int main()

{
	float gbitsec,gbitmin,gbitora,gbytemin,gbyteora,kbytemin;
	
	gbitmin=1*60;
	gbitora=1*3600;
	gbytemin=0.125*60;
	gbyteora=0.125*3600;
	kbytemin=0.125*(pow(2,20))*6;
	printf ("1 Gbit/sec sono : %.2f Gbit/minuto ; %.2f Gbit/Ora ; %.2f GByte/min ;\n\n %.2f GByte/ora ; %.2f KByte/min \n" ,gbitmin,gbitora,gbytemin,gbyteora,kbytemin);
	return 0;
}