Sort by

recency

|

953 Discussions

|

  • + 0 comments

    Python Solution:

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

    Here is the code that performs the required integer and float division:

    # Read input values
    a = int(input())
    b = int(input())
    
    # Integer division
    print(a // b)
    
    # Float division
    print(a / b)
    
  • + 0 comments

    You're very welcome! I'm thrilled to hear the guidance was helpful. It’s always great to know that the insights shared are both useful and appreciated. If there’s anything else you’d like to explore further, just let me know! https://kimetsu-noyaiba.online/ Emma

  • + 0 comments

    You're very welcome! I'm glad to hear that the guidance resonated with you. It's always a pleasure to know that the insights shared are both useful and appreciated. If there's anything else you'd like to explore or dive deeper into, don't hesitate to let me know! https://nullsbrawlsapk.net.tr/

  • + 1 comment

    why this message is coming

    1/2 test cases failed :(