please solve this 5 marks question . Q .27 .
Please not write irrelevant answer
Otherwise reported
Attachments:
Answers
Answered by
2
Answer:-
This is the required program in python.
num1=int(input("Enter first number: "))
num2=int(input("Enter second number: "))
num3=int(input("Enter third number: "))
s=num1+num2+num3
print("First output: ",s)
s=(num1-num2)+(num2-num3)+(num1-num3)
print("Second output is: ",s)
s=num1**num2//num3
print("Third output is: ",s)
Similar questions