package com.abelski.samples; public class StudentPersonDemo { public static void main(String args[]) { Person per = new Student("David",123123,88); per.printDetails(); } }