This repository has been archived on 2024-08-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
lessons/Python/pyton_test/task8.py

5 lines
103 B
Python

def sum_range(a: int, b: int, /) -> int:
if a > b:
a, b = b, a
return sum(range(a, b))