Register now or log in to join your professional community.
/**
Welcome to print Me class
it prints happy birthday in console
ps - > you can improve the class by reading your birthday and check with current day and print happy
b'day
**/
public class PrintMe
{
/**
Main method
**/
public static void main(string[] args)
{
System.out.println("Happy Birthday");
}
}