by @Wichart Manachaimongkol Fork
 
id_99a602a0_bba3_4cde_b0c8_99c5049c6450 Begin id_ff30d600_55a9_493e_85a6_40a47c2371cb N1 = 0 id_99a602a0_bba3_4cde_b0c8_99c5049c6450:s->id_ff30d600_55a9_493e_85a6_40a47c2371cb:n id_7928e1c5_d728_4a58_8345_989ae4f05a24 N2 = 0 id_ff30d600_55a9_493e_85a6_40a47c2371cb:s->id_7928e1c5_d728_4a58_8345_989ae4f05a24:n id_587ec08e_ce7a_4194_aa08_18cf92583af3 N1 id_7928e1c5_d728_4a58_8345_989ae4f05a24:s->id_587ec08e_ce7a_4194_aa08_18cf92583af3:n id_09d4d1bc_30a0_4963_a229_4cefbbbcb7f2 N2 id_587ec08e_ce7a_4194_aa08_18cf92583af3:s->id_09d4d1bc_30a0_4963_a229_4cefbbbcb7f2:n id_b2b418a5_a396_46df_8293_6cacb51219b0 "Sum of " + N1 + " and " + N2 + " = " + (N1 + N2) id_09d4d1bc_30a0_4963_a229_4cefbbbcb7f2:s->id_b2b418a5_a396_46df_8293_6cacb51219b0:n id_b6e0718b_d27a_4241_989a_bc1cab92a587 "Difference of " + N1 + " and " + N2 + " = " + (N1 - N2) id_b2b418a5_a396_46df_8293_6cacb51219b0:s->id_b6e0718b_d27a_4241_989a_bc1cab92a587:n id_d701e11a_c531_4871_ad09_07ec9640cc5c "Product of " + N1 + " and " + N2 + " = " + (N1 * N2) id_b6e0718b_d27a_4241_989a_bc1cab92a587:s->id_d701e11a_c531_4871_ad09_07ec9640cc5c:n id_3b2529cc_2f70_4914_a83a_f440413b80cf "Quotient of " + N1 + " and " + N2 + " = " + (N1 / N2) + " with Remainder = " + (N1%N2) id_d701e11a_c531_4871_ad09_07ec9640cc5c:s->id_3b2529cc_2f70_4914_a83a_f440413b80cf:n id_075637d6_bf56_4ac8_a49a_2ce0bf6b5e05 End id_3b2529cc_2f70_4914_a83a_f440413b80cf:s->id_075637d6_bf56_4ac8_a49a_2ce0bf6b5e05:n
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 = '')