Write a program to take input Dividend and Divisor and print its Quotient and Reminder in python
# Write a program to take input Dividend and Divisor and print its Quotient and Reminder
print("This is a simple calculator program which only divides.")
did = int(input("Pls enter the value of your divided in numbers:"))
dir = int(input("Pls enter the value of your divisor in numbers:"))
a = did / dir
b = did // dir
c = did % dir
print("Float value of quotient:", a, "\nInteger value of quotient:", b, "\nRemainder value:", c)