Sum of Two Numbers easy
basics

Write a function solution(a, b) that returns the sum of two numbers a and b.

Example

solution(3, 5)  → 8
solution(-1, 7) → 6
solution.py
💡 Tip: Press Ctrl+Enter to run