package java_core; public class Variables { public static void main(String args[]) { int quantity = 7; double total = 55.5*quantity; System.out.println("Total price is: " + total); String name = "Gaurav"; System.out.println(name); //and this line is commented. /* now this line is also commented. * with this also commented. * this too * goes on * */ } }