stuck in the second reqirement....any recommandations..
package com.codegym.task.task01.task0116;
/*
Let's change the code
*/
public class Solution {
public static void main(String[] args) {
String name = "Elly";
String a=" ";
int b=0;
String temp=" "+ a + b;
temp=name;
name="Amigo";
String text = "Hello " + name + "!";
System.out.println(text);
}
}