String Concatenation

Easy

📝 Description

Combine two strings into one

Input Format

Two strings str1 and str2

Output Format

Combined string

Constraints

1 ≤ str1.length, str2.length ≤ 100

🔍 Sample Input

"Hello"
"World"
            

✅ Sample Output

"HelloWorld"
            

Code Editor

Please login to run and submit code.

Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run