Untitled

ецкуе
Anonymous
c_cpp
10/19/2023 12:18 PM
248 B
11
Indexable
#include <iostream>
#include <string>
using namespace std;

int main()
{
	int N;

	cin >> N;

	if (N == 1) {
		cout << "meow!";
	}
	if (N == 2) {
		cout << "bark!";
	}
}
Editor is loading...