로딩
요청 처리 중입니다...

해커랭크 Practice What's Your Name?

 해커랭크 Practice What's Your Name?

문제 You are given the firstname and lastname of a person on two different lines. Your task is to read them and print the following: Hello firstname lastname!

You just delved into python 풀이 def print_full_name(a, b): msg ='Hello '+a+' '+b+'! You just delved into python.' print(msg) if __name__ == '__main__': first_name = input() last_name = input() print_full_name(first_name, last_name) https://www.hackerrank.com/challenges/whats-your-name/problem...