4 lines
70 B
Python
Raw Normal View History

2023-09-20 00:57:45 +03:00
def add(a:int, b:int) -> int:
"""Add two ints"""
return a + b