write a programm to ask users to input two forces by their components of (Fx1,Fy1) and (Fx2,Fy2) from the keyboard.call twice the function to display both magnitude and direction angle of two forces on the screen.add two forces and display both magnitude and direction angle of their resultant.
R = sqrt of Fx1 +Fx2)^2 + (Fy1 + Fy2)^2
and theta = arctan (Fy1+Fy2/Fx1+Fx2)