#include <stdio.h>

int main(void)
{
	/* user weight & rhodium equivalent */
	float weight, value;

	printf("Are you worth your weight in rhodium?\n");
	printf("Let's check it out.\n");
	printf("Please enter your weight in kilogram: ");

	// get input from user (as float)
	scanf("%f", &weight);

	// assume platinum is 1641.36€ per once
	// 1 kg is about 32.1507 ounces troy
	value = 1641.36 * 32.1507 * weight;

	printf("Your weight in rhodium is worth %.2f Euro.\n", value);
	printf("You are easiliy woth that! If rhodium prices drop,\n");
	printf("eat more to maintain your value.\n");

	return 0;
}