#include <iostream>
using namespace std;

int main() {
	string s("Some example string. Let's give it few more bytes.");
	cout << s.capacity() << '\n';
	s = "";
	cout << s.capacity() << '\n';
	s.shrink_to_fit();
	cout << s.capacity() << '\n';
	return 0;
}