Write a Python lambda function that concatenates two strings, with a space in between. The function should accept two strings and return a single string.
Example 1:
Input: "Hello", "World"
Output: "Hello World"
Example 2:
Input: "Lambda", "Function"
Output: "Lambda Function"