Java language
Assign secretID with firstName, a space, and lastName. Ex: IffirstName is Barry and lastName is Allen, then output is:
Barry Allen
import java.util.Scanner;
public class CombiningStrings {
public static void main (String [] args) {
Scanner scnr = newScanner(System.in);
String secretID;
String firstName;
String lastName;
firstName = scnr.next();
lastName = scnr.next();
/* Your solution goes here */
System.out.println(secretID);
}
}

3.14.1:
PayPal Gateway not configured
PayPal Gateway not configured