Write a program to print the message, "Stay Safe, Stay Healthy" in C++?
Answers
Answered by
1
Answer:
#include <iostream>
int main() {
std::cout << "Stay Safe, Stay Healthy !";
return 0;
}
Explanation:
Mark me as the Brainliest.
Hope it helps you !
Similar questions