I'm having a problem importing from a java class.
Here is my program:
import MyStuff.*;
public class Monday2
{
    public static void main(String[] args)
    {
        p("\n\n\n\t\tGood Morning from the Morning2 Class.\n\n\n");
    }
}
Here is the MyStuff class:
public class MyStuff
{
    public static final void p(String inputString)
    {
        System.out.println(inputString);
    }
}
Please tell me what I am doing wrong
 
     
     
    