30/09/2022 satyams.friend 0 Comments //C++ Program to add 2 numbers #include<iostream.h> #include<conio.h> void main() { clrscr(); int a, b, sum; cout<<"Enter any two numbers"<<endl; cin>>a>>b; sum=a+b; cout<<"Sum of two numbers = "<<sum<<endl; getch(); } Leave a Reply Cancel replyYour email address will not be published. Required fields are marked *Comment * Name * Email * Website Save my name, email, and website in this browser for the next time I comment. Post navigation Previous: Next: