mirror of
https://github.com/vale981/apheleia
synced 2025-03-06 01:51:41 -05:00

<!-- To expedite the pull request process, please see the contributor guide for my projects: <https://github.com/raxod502/contributor-guide> -->
18 lines
199 B
Python
18 lines
199 B
Python
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,
|
|
)
|