We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
int main() {
int a,b,c ,sum=0;
cout << "enter three number to get it's colliction" <>a>>b>>c;
sum=a+b+c;
cout <<"the sum = "<
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
return 0;
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Input and Output
You are viewing a single comment's thread. Return to all comments →
int main() { int a,b,c ,sum=0; cout << "enter three number to get it's colliction" <>a>>b>>c; sum=a+b+c; cout <<"the sum = "< /* Enter your code here. Read input from STDIN. Print output to STDOUT */
return 0; }