#include <iostream>
using namespace std;
int main()
{
long n;
int k = 0;
cin >> n;
while (n > 0)
k += 1;
n = n / 10;
}
if (k % 2 != 0)
cout << "Verno";
else
cout << "Neverno";
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
using namespace std;
int main()
{
long n;
int k = 0;
cin >> n;
while (n > 0)
{
k += 1;
n = n / 10;
}
if (k % 2 != 0)
cout << "Verno";
else
cout << "Neverno";
return 0;
}