public class ObjectInput {
		public static void main (String[] arg) {
				FileInputStream fis = new FileInputStream ("objects.sav");
				ObjectInputStream ois = new ObjectInputStream (fis);
				int i = ois.readInt ();
				String today = (String) ois.readObject ();
				Date date = (Date) ois.readObject ();
				ois.close();
		}
}
