{ "type": "AdaptiveCard", "body": [ { "type": "TextBlock", "text": "Sure! Here's an example of code to add two numbers in Python:\n\n```python\nnum1 = 5\nnum2 = 10\n\nsum = num1 + num2\n\nprint(\"The sum of\", num1, \"and\", num2, \"is:\", sum)\n```\n\nThis code declares two variables `num1` and `num2` with values 5 and 10 respectively. It then adds the two numbers together and stores the result in the variable `sum`. Finally, it prints the sum to the console.", "wrap": true } ], "msteams": { "width": "Full" }, "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "version": "1.5" }