001-003-005

Variable Initialization: Profile Display

Easy

Problem Description

variable Initialization: Profile Display

In this problem, you will create a program that reads a name and age, initializes them into variables, and displays the result in profile format to standard output.

Learning Objective: Understand how to declare and initialize variables simultaneously

Create a program that inputs a name and age, then displays them in profile format.

Input

Line 1: Name (string)
Line 2: Age (integer)

Output

Name: [name]
Age: [age]
```java

## Example
Input:
```java
Taro
25
```java
Output:
```java
Name: Taro
Age: 25

Ready to Try Running Code?

Log in to access the code editor and execute your solutions for this problem.

Don't have an account?

Sign Up