Source Code-
# A simple program made by Linux & Windows Tech to find the remainder using Python
name = input("Enter your name:")
print("Hello,", name)
a = input("Enter the first number:")
b = input("Enter the second number:")
print("The remainder is:", float(a) / float(b))