User Profile Generator
Input: `name` (str), `age` (int). Return: String 'My name is [name] and I am [age] years old'.
Example
Input: 'Alice', 20
Output: 'My name is Alice and I am 20 years old'
Need a hint?
- Use f-strings for cleaner code
Run your code to see output