print("Enter two numbers to perform arithmatic operation:") num1=int(input()) num2=int(input()) print("Addition of the given numbers is ",num1+num2) print("Subtraction of the given numbers is ",num1-num2) print("Multiplication of the given numbers is ",num1*num2) print("Division of the given numbers is ",num1/num2) print("Floor division of the given numbers is ",num1//num2) print("Modulus of the given numbers is ",num1%num2) print("Power of the given numbers is ",num1**num2)