#arithmetic progression
n=("enter first no.")
N=("enter second no.")
A=n+N
D=(n-N)
P=n*N
Q=n/N
F=n//N
M=n%N
S=n**2
print("the sum is",A)
print("the diff is",D)
print("the product is",P)
print("the quotient is",Q)
print("the floor division is",F)
print("the remainder is",M)
print("the square of first no. is",S)
I2FyaXRobWV0aWMgcHJvZ3Jlc3Npb24Kbj0oImVudGVyIGZpcnN0IG5vLiIpCk49KCJlbnRlciBzZWNvbmQgbm8uIikKQT1uK04KRD0obi1OKQpQPW4qTgpRPW4vTgpGPW4vL04KTT1uJU4KUz1uKioyCnByaW50KCJ0aGUgc3VtIGlzIixBKQpwcmludCgidGhlIGRpZmYgaXMiLEQpCnByaW50KCJ0aGUgcHJvZHVjdCBpcyIsUCkKcHJpbnQoInRoZSBxdW90aWVudCBpcyIsUSkKcHJpbnQoInRoZSBmbG9vciBkaXZpc2lvbiBpcyIsRikKcHJpbnQoInRoZSByZW1haW5kZXIgaXMiLE0pCnByaW50KCJ0aGUgc3F1YXJlIG9mIGZpcnN0IG5vLiBpcyIsUykKCiAgICAKICAgIAogICAgCiAgICA=
#arithmetic progression
n=("enter first no.")
N=("enter second no.")
A=n+N
D=(n-N)
P=n*N
Q=n/N
F=n//N
M=n%N
S=n**2
print("the sum is",A)
print("the diff is",D)
print("the product is",P)
print("the quotient is",Q)
print("the floor division is",F)
print("the remainder is",M)
print("the square of first no. is",S)