Find the time complexity of sum of two numbers using functionWhat is the time complexity of the program for the sum of two numbers using function ?Step count methodint sum() {int a,b,c; // —-0a=10; //—-1b=20; //—-1c=a+b; //—-1return c; //—-1}f(n) = 0+1+1+1+1 = 4f(n) = O(1) Download as PDFShare this:Click to share on Facebook (Opens in new window)Click to share on Telegram (Opens in new window)Click to share on WhatsApp (Opens in new window)