#!/bin/bash

# skip strongbash header
set -eu
IFS=. read -r a b c d <<<"${1}"
c="00$c"
d="00$d"
echo ${b}${c: -3}${d: -3}
exit 0
