Write a program that prints a line with the message “Hello and Bye!”.
Input : There is not input: the program does not read anything.
Output : Print exactly the required text in a line.
#include <iostream> using namespace std; int main() { cout << "Hello and Bye!" << endl; }
No comments:
Post a Comment