Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions math_kor/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ def 더하기(a,b):
"""
return 0


def 곱하기(a,b):
"""Returns the multply of a and b
>>> 곱하기(1,2)
2
"""
return a*b

def 빼기(a,b):
"""Returns the sum of a and b
>>> 빼기(3,2)
Expand Down