import java.util.Scanner;

public class TrainTest
{
  
  public static void main(String[] args)
  {
    /**
     * Prompt the user to enter the speeds and locations of the two trains
     * Creat two Trains
     * */
    
    //---------------------------------------//
    //             YOUR CODE GOES HERE       //
    //---------------------------------------//
    
    /**
     * Ask the user for the fly's speed
     * */
    //---------------------------------------//
    //             YOUR CODE GOES HERE       //
    //---------------------------------------//
    
    /**
     * Now using methods given in Train.java, calculate the distance travelled
     * by the fly (using the simple calculation described in the question and not 
     * an infinite sum)
     * */
    //---------------------------------------//
    //             YOUR CODE GOES HERE       //
    //---------------------------------------//
    
    /**
     * Disply the resulting distance travelled by the fly to the user
     * */
    //---------------------------------------//
    //             YOUR CODE GOES HERE       //
    //---------------------------------------//
  } 
}