mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
21 lines
349 B
Python
21 lines
349 B
Python
def problem_p02657(input_data):
|
|
def iput():
|
|
return int(eval(input_data))
|
|
|
|
def mput():
|
|
return list(map(int, input_data.split()))
|
|
|
|
def lput():
|
|
return list(map(int, input_data.split()))
|
|
|
|
def solve():
|
|
|
|
a, b = mput()
|
|
|
|
return a * b
|
|
|
|
return 0
|
|
|
|
if __name__ == "__main__":
|
|
|
|
solve()
|