import math
N1 = 0
N2 = 0
N1 = input(""Enter 1st number: "")
N2 = input(""Enter 2nd number: "")
print("Sum of " + N1 + " and " + N2 + " = " + (N1 + N2), end = '')
print("Difference of " + N1 + " and " + N2 + " = " + (N1 - N2), end = '')
print("Product of " + N1 + " and " + N2 + " = " + (N1 * N2), end = '')
print("Quotient of " + N1 + " and " + N2 + " = " + (N1 / N2) + " with Remainder = " + (N1 % N2), end = '')