-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
Description
Add Sample Input/ Output for all the cases at the end of the program in commented form.
Example:
// A program to add two numbers a and b
#include<iostream>
int main()
{
int a, b;
cout << "Enter the numbers a and b :" << endl;
cin>>a>>b;
cout << a << " + " << b << " = " << a+b;
return 0;
}
/*
Sample I/O:
Input :
Enter the numbers a and b :
10 12
Output :
10 + 12 = 22
*/
Reactions are currently unavailable