/*
* @title 読める時刻 ⇔ UNIX タイムスタンプ雑変換
* @description できるといいなくらいで。
* @include http://*
* @license MIT License
* @javascript_url
*/
void (s => prompt('', /\D/.test(s) ? Math.trunc(new Date(s).getTime() / 1000) : new Date(s * 1000).toLocaleString()))(
prompt('time', '')
);