Input and Output

  • + 0 comments

    include

    using namespace std;
    int main()
    {
    int a,b,c,s=0;
    cout<<"enter the number ;
    cin>>a>>b>>c;
    s=a+b+c;cout<<"sum is ="<<s;
    }