class Append{
static void main(String[] args){
def c="Hello ";
def d="world";
def e=c+d;
println(e);
}