Sort by

recency

|

1063 Discussions

|

  • + 0 comments

    Solution : print(f"{a//b}\n{a/b}")

  • + 0 comments

    if name == 'main': a = int(input()) b = int(input()) div = (a//b) divf = (a/b) print(div) print(divf)

  • + 0 comments

    I’ve been playing PVZ Fusion for a while, and it’s amazing how much depth the hybrid plants and fusion system add to the original game. The multiple upgraded zombies make each level exciting, and this really keeps you engaged. For anyone looking to try it out safely, you can check https://pvzfusionmod.com/.

  • + 0 comments

    a = int(input()) b = int(input())

    div = int(a/b) print(div)

    divf = float(a/b) print(divf)

  • + 0 comments

    if name == 'main': , why this text in every test editor field?