What's Your Name? - HackerRank Python String Problem Solution

Author: Al-mamun Sarkar Date: 2020-03-23 20:02:14

What's Your Name? - HackerRank Python String Problem Solution. Click here to see the problem.

Code:


def print_full_name(a, b):
    print("Hello " + a + " " + b + "! You just delved into python.")


if __name__ == '__main__':
    first_name = input()
    last_name = input()
    print_full_name(first_name, last_name)

 

 

Test Input:

Mamun
Sarkar

Test Output:

Hello Mamun Sarkar! You just delved into python.