Input Format
The first line contains the first name, and the second line contains the last name.
Constraints
The length of the first and last name ≤ .
Output Format
Print the output as mentioned above.
Sample Input 0
Ross
Taylor
Sample Output 0
Hello Ross Taylor! You just delved into python.
Explanation 0
The input read by the program is stored as a string data type. A string is a collection of characters.
What's Your Name? - Hacker Rank Solution
Use
+
for string concatenation.
Problem Setter's code:
Python 2
a = raw_input()
b = raw_input()
print "Hello %s %s! You just delved into python." % (a, b)
Python 3
a = input()
b = input()
print("Hello %s %s! You just delved into python." % (a,b))
Problem Tester's code:
Python 2
a = raw_input()
b = raw_input()
print "Hello " + a + " " + b + "! You just delved into python."
Python 3
a = input()
b = input()
print ("Hello " + a + " " + b + "! You just delved into python.")
what should i write in if statement ??
ReplyDeletei have just confusion in that only
u don't have to change the if statement. just write print statement.
ReplyDeleteprint("Hello " + a, b + "! You just delved into python.")