#include <iostream>
#include <string>
signed main() {
setlocale(LC_ALL, "Rus");
bool haveDigit = false;
std::string s;
getline(std::cin, s);
for (int i = 0; i < s.size(); i++) {
if (s[i] >= '0' && s[i] <= '9') {
std::cout << i << std::endl;
haveDigit = true;
break;
}
if (!haveDigit)
std::cout << "В строке нет цифр!";
return 0;
#include <iostream>
#include <string>
signed main() {
setlocale(LC_ALL, "Rus");
bool haveDigit = false;
std::string s;
getline(std::cin, s);
for (int i = 0; i < s.size(); i++) {
if (s[i] >= '0' && s[i] <= '9') {
std::cout << i << std::endl;
haveDigit = true;
break;
}
}
if (!haveDigit)
std::cout << "В строке нет цифр!";
return 0;
}