Say "Hello, World!" With Python

  • + 0 comments

    Problem Description

    Given two strings "str1" and "str2" your task is to concatenate the two strings and print the resultant concatenated string. Input Format

    Two strings namely, str1 and str2 Output Format

    str1 and str2 joined together Sample Input

    str1 = Hello str2 = World Sample Output

    HelloWorld