const rl = require("readline").createInterface({ input: process.stdin });
var iter = rl[Symbol.asyncIterator]();
const readline = async () => (await iter.next()).value;

void async function () {
    // Write your code here
    const strArr = (await readline()).split(' ')
    console.log(strArr[strArr.length - 1].length) 
}()