#include <stdio.h>

struct meter {float x;} gravity;

struct inch {float x;} harddrive;

int main(void) {
	gravity.x = 9.8;
	harddrive.x = 3.5;
	
	return harddrive.x/gravity.x;
}
