import java.util.*;

/**
 * Converts a user-entered number of seconds to hours, minutes, and seconds.
 */
public class ToSeconds
{
    public static final void main(String[] args)
    {
        // ask the user for the number of seconds
        Scanner scanner = new Scanner(System.in);
        System.out.print("Please enter the number of seconds: ");

        // store the value in numSeconds
        int numSeconds = scanner.nextInt();

        // TODO: Perform the calculations to convert to hours, minutes, and 
        // seconds. Store the values in the provided variables.

        int hours = 0;
        int minutes = 0;
        int seconds = 0;

        System.out.println(numSeconds + " seconds equals " + hours + " hours, " + minutes + " minutes, and " + seconds + " seconds.");
    }
}
