import java.util.Scanner; import java.io.*; //for File public class Hailstone3 { public static int sequence(int num) { int count; int n; count=1; n = num; // ... complete this section return count; } public static void main(String[] args) throws Exception { int max; int val1, val2; int count; Scanner infile = new Scanner(new File("hailstone.txt")); while (infile.hasNext()) { max = 0; val1 = infile.nextInt(); val2 = infile.nextInt(); //Complete this section System.out.println(" " + val1 + " " + val2 + " " + max); } } }