print "Enter a variable name: "
name = input()
print name + " = "
exec(name + " = 42")
exec("println " + name)