3 solutions

  • 2
    @ 2025-12-24 15:39:10

    a,b=input().split()

    a=int(a)

    b=int(b)

    c=a*b

    c=str(c)

    print("总的棵数:"+c)

    • 1
      @ 2025-12-11 17:17:52

      a,b=input().split() a=int(a) b=int(b) c=a*b c=str(c) print("总的棵数:"+c)

      • -1
        @ 2025-12-30 11:02:54

        people, trees_per_person = map(int, input().split()) total_trees = people * trees_per_person print(f"总的棵数:{total_trees}")

        • 1

        练6.1 植树造林

        Information

        ID
        167
        Time
        1000ms
        Memory
        64MiB
        Difficulty
        7
        Tags
        # Submissions
        1006
        Accepted
        206
        Uploaded By