Computer Science, asked by Student678, 3 months ago

Write a program to print the message, "Stay Safe, Stay Healthy" in C++?​

Answers

Answered by ksabhijith2007
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