Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134988 潘允晨 02三个数相乘 Python3 Accepted 48 MS 3760 KB 67 2025-11-01 21:53:43

Tests(10/10):


Code:

a,b,c=input().split() a=int(a) b=int(b) c=int(c) print(a*b*c)