blob: a90652d93c2494611753b1eb333d4f94bb3678c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import sys
import os
import path
def the_solution(a, b: int, c: bool = True) -> bool:
print(a + b)
return True
if __name__ == "__main__":
the_solution(
1,
2,
)
|