package class8_1_SimplifiedTourists_BinaryIO_inClass_start; import java.util.Scanner; public class Driver { public static void main(String[] args) { Person person = new Person(new Person.Goal(),400,300); System.out.println("Please enter the filename to write:"); Scanner in = new Scanner(System.in); String filename = in.nextLine(); person.write(filename); } }