// Truncation #include #include int main(void) { // Prompt user for x long x = get_long("x: "); // Prompt user for y long y = get_long("y: "); // Divide x by y float z = x / y; // Perform division printf("%f\n", z); }