Sort by

recency

|

979 Discussions

|

  • + 0 comments

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

    Print the result of integer division

    print(a // b)

    Print the result of float division

    print(a / b)

  • + 0 comments

    I've been hearing a lot about Merino wool clothing lately. Many people say it's softer, more breathable, and regulates body temperature better than other types of wool or synthetic fabrics. Some claim it's great for both summer and winter due to its moisture-wicking and odor-resistant properties.

    I'm curious to know from those who have used Merino wool clothing—how does it actually perform in real-life situations? Is it worth the investment? Let me know your experiences!

  • + 0 comments

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

    print(a//b, a/b, sep="\n")

  • + 0 comments

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

    print(a//b) print(a/b)

  • + 0 comments

    For Python3 Platform

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