Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92042 许诺 02长方形的面积 Python3 Accepted 47 MS 3768 KB 75 2024-09-28 10:14:30

Tests(10/10):


Code:

a = input().split() b = a[0] c = a[1] b = int(b) c = int(c) print(b*c)