#include <iostream>
#include <string>

std::string::size_type foo() { return 0; }

int main() {
	std::cout << foo() << "\n";
	// your code goes here
	return 0;
}