Computer Science, asked by NortonNymo, 9 months ago

write a program to calculate the sum, difference,
product and division of 25 and 5.​

Answers

Answered by prarthana53
0

Explanation:

kjjrrryuiu has been in songs since he became the first to SMS a series in songs of the year after

Answered by AskewTronics
0

Python program :

Explanation:

print("Sum =",25+5)#Print the sum.

print("Difference =",25-5)#Print the difference.

print("Product =",25*5)#Print the multiplication result.

print("Division =",25/5)#Print the division result.

Output:

  • The above program give the output as "30,20,125 and 5".

Code Explanation :

  • The above code is written in the python language, in which the first line is used to print the added value.
  • The second line is used to print the difference with the help of the print function.
  • The third line and the fourth line are also used for multiplication and division with the help of print function.

Learn More :

  • Python : https://brainly.in/question/14689905
Similar questions