Answer:
In Python:
name = "Arthur"
age = "62"
print("Hi! My name is "+name+" and I am "+age+" years old")
Explanation:
Given
See attachment
Required
Write a code to introduce yourself
Initialize name
name = "Arthur"
Initialize age
age = "62"
Print introduction
print("Hi! My name is "+name+" and I am "+age+" years old")