Skip to content

Instantly share code, notes, and snippets.

View shubham1710's full-sized avatar
🎯
Focusing

Kumar Shubham shubham1710

🎯
Focusing
View GitHub Profile
#include<bits/stdc++.h>
int main()
{
int a,b;
cout<<"Enter two numbers \n";
cin>>a>>b;
cout<<"\n The sum of the two numbers are"<<a+b;
return 0;
}