Preview:
public class CombineNames {
  
	public static void main(String[] args) {
    
    // Add your first names:
    String firstName = "Cash";  
    String lastName = "Carti";

    // What's the full name?
  System.out.println(firstName.concat(" " + lastName));
  }
  
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter