#include <algorithm>
#include <iostream>
#include <string>

int main()
{
	std::string s;
	std::cin >> s;
	auto n = std::count(s.cbegin(), s.cend(), '1');
	std::cout << "the number of '1's in the string \"" << s << "\" is: " << n << "\n";
}