Design a program that will ask the user to input two integernumbers and then perform the basic arithmetic operations such asaddition and subtraction. Each calculation is done by a separatefunction. The main function gets the input from the user, thencalls the addition function and the subtraction function one at atime to perform the calculations. Each calculation function(addition or subtraction function) performs an arithmetic operationand then returns the calculation results back to where it wascalled. The main function then calls the display function todisplay the results for the user on the screen. Note, the displayfunction is already developed for you. For each set of numbers theuser entered, the program produces the sum and the difference ofthe values. You may assume the difference is calculated by thefirst number subtracts the second number that the result may yielda negative number.
Draw an IPO chart and a Pseudocode program for each function .Besides, apply all the techniques you've learned, be sure todocument your programs and apply good programming styles.
I want to ask if I need to declare additional variables to holdthe arguments being sent to the display function.
Function void main()
// Declare the Variables.
 Â
Declare integer num1, num2, total, total2
 Â
// Display Greeting message.
 Â
Display \"Input two integer numbers.\"
Display \"And I will tell you the sum and difference of the twonumbers\"
// Prompt User for the first number.
 Â
Display \"Enter the first number: \"
Input num1
 Â
// Prompt User for the second number.
 Â
Display \"Enter the second number: \"
input num2
 Â
// Get the sum of both numbers.
 Â
Set total = addition(num1, num2)
 Â
// Get the difference of both numbers.
 Â
Set total2 = subtraction(num1, num2)
// Send the results to the display function.
 Â
Set total = display() ---- I don't know if i need a variable inhere?
Set total2 = display() ---- I don't know if I need a variable inhere?
 Â
End Function
Function void display(Integer arg1, Integer arg2)
  // Display the sum.
  Display \"The sum is\",arg1
 Â
  Display the difference.
  Display \"The difference is\",arg2
End Function
P.S: I have already done the addition and subtractionmodules.