// Written by a BHCSI TA in 2005, edited by Arup Guha on 7/13/06
// for 2006 BHCSI Mock Contest #1 to use the Scanner and read from
// a file.

import java.util.*;
import java.io.*;

public class air {
 
	public static void main (String args[]) throws IOException {
		
		//Define the constants
		final double AIR_PER_DAY = 9.1;
		final double SHUTTLE_CAPACITY = 400.0;
		
		// Open the input file.
	    Scanner fin = new Scanner(new File("air.in"));
		
		int i = 0;
		while (i < 2) {
		
			// Read in the input
			int num_people = fin.nextInt();	
			double compression_ratio = fin.nextDouble();	
			int trip_length = fin.nextInt();	
		
			// Calculate the air requirement.
			double compressed_air_required = (num_people * AIR_PER_DAY * trip_length)/compression_ratio;
		
			// Output this value.
			System.out.println("The required amount of compressed air needed is: " + compressed_air_required);
		 
			// Output whether or not the mission is a go!
			if (compressed_air_required <= SHUTTLE_CAPACITY)
				System.out.println("Mission a go!");
			else
				System.out.println("Houston we have a problem.");
			
			System.out.println(); // Blank line in between cases.
			i++;
		}
	}

}