// This is my program to print the fresh prince theme. // by Martson Limsteppkai public class WillSmith { public static void main(String[] args) { lyrics(); System.out.println(); lyrics(); } public static void lyrics() { System.out.println("Now this is the story all about how"); System.out.println("my life got flipped turned upside down"); } }