public class PrintString { public static void main(String args[]) { String x; x="Hello, World!"; System.out.print(x); } }