Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

//sum of two numbers #include<iostream.h> #include<conio.h> #include<math.

h> void main() { int a,b,c; cout<<"\n Enter values of a,b:"<<endl; cin>>a>>b; c=a+b; cout<<"sum ="<<c<<endl; getch(); }

You might also like