static S rpad(S s, int l) { ret lengthOfString(s) >= l ? s : s + rep(' ', l-lengthOfString(s)); } static S rpad(int l, S s) { ret rpad(s, l); }