Sort by

recency

|

988 Discussions

|

  • + 0 comments

    if name == 'main': a = int(input()) b = int(input()) print(f"{a//b}\n{a/b}")

  • + 0 comments

    https://pizzatasticworld.com/pizza-express-menu/offers an incredible variety of delicious pizzas, sides, and drinks! Whether you're craving a classic Margherita or exploring their vegan options, there's something for everyone.

  • + 0 comments

    if name == 'main': a = int(input()) b = int(input())

    print(a//b)
    print(a/b)
    
  • + 0 comments
    print(a//b,a/b, sep="\n")
    
  • + 0 comments

    a = int(input()) b = int(input()) intdivision=a//b floatdivision=a/b print(intdivision) print(floatdivision)