Untitled

цецу
Anonymous
c_cpp
10/19/2023 12:45 PM
256 B
16
Indexable
#include <iostream>
#include <string>
using namespace std;

int main()
{
	int N;
	cin >> N;
	int count = N;

	for (int N = 0; N < count; N++)
	{
		cout << N << "Meow!";
	}

}
Editor is loading...