3 条题解

  • 0
    @ 2025-6-6 12:03:16
    a=list(map(int,input().split()))
    print("总的棵数:"+str(a[0]*a[1]))
    
    
    • 0
      @ 2025-3-26 13:19:37

      • 0
        @ 2025-3-24 12:15:27
        a = input().split()
        for i in range(0, len(a)):
            a[i] = int(a[i])
        print("总的棵数:" + str(a[0] * a[1]))
        
        
        • 1

        信息

        ID
        272
        时间
        1000ms
        内存
        64MiB
        难度
        7
        标签
        递交数
        239
        已通过
        61
        上传者