Respuesta :
Answer:
I'll answer this question using Python
firstName = input("First Name: ")
lastName = input("Last Name: ")
secretID = firstName+" "+lastName
print(secretID)
Explanation:
This line prompts user for first name
firstName = input("First Name: ")
This line prompts user for last name
lastName = input("Last Name: ")
This line calculates secretID
secretID = firstName+" "+lastName
This line prints secretID
print(secretID)
Answer:
My name is Barry Allen, and I am the fastest man alive. When I was a child I saw my mother killed by something impossible. My father went to prison for the murder. Then an accident made me the impossible. To the outside world, I’m an ordinary forensic scientist, but secretly, I use my speed to fight crime and find others like me. And one day, I’ll find who killed my mother and get justice for my father. I am the Flash.
Explanation:
My name is Barry Allen, and I am the fastest man alive. When I was a child I saw my mother killed by something impossible. My father went to prison for the murder. Then an accident made me the impossible. To the outside world, I’m an ordinary forensic scientist, but secretly, I use my speed to fight crime and find others like me. And one day, I’ll find who killed my mother and get justice for my father. I am the Flash.