Merge Dictionaries
Easy📝 Description
Combine two dictionaries into one
Input Format
Two dictionaries in JSON format
Output Format
Merged dictionary
Constraints
Keys are strings, values are integers
🔍 Sample Input
{a:1} {b:2}
✅ Sample Output
{"a":1,"b":2}
Code Editor
Please login to run and submit code.
Results
Suggested Solution
Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run