JAVA
java
1
2
3
4
5
6
7
8
public class Program
{
public static void main(String[] args) {
String b= "System.out.println"; // if u want to display ur answer in character then u must use string
String c= "(\"value of a=\"";
System.out.println("method invocation line:"+b+""+c+"+a);");
}
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run