/home/chloe/NetBeansProjects/ADSV Java/lab5_ChloeFontenot/src/main/java/com/chloefontenot/lab5_chloefontenot/WhatsYourName.java
/*
 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
 */
package com.chloefontenot.lab5_chloefontenot;

import java.util.Scanner;

/**
 *
 * @author chloe
 */
public class WhatsYourName {
    public static void main(String[] args)
    {
        // Create Scanner
        Scanner input = new Scanner(System.in);
        
        // Declare vars
        String firstName,
               lastName;
        
        // Prompt for input
        System.out.print("What's your name? (Enter first and last) ");
        firstName = input.next();
        lastName = input.next();

        // Print output
        System.out.println(firstName + " " + lastName + " is a beautiful name!");

    }
}