5560: When?什么时候 (ABC258A)

内存限制:1024 MB 时间限制:2.000 S
评测方式:文本比较 命题人:
提交:0 解决:0

题目描述

 Problem Statement:

AtCoder Beginner Contest usually starts at 21:00 JST and lasts for $100$ minutes.

You are given an integer $K$ between $0$ and $100$ (inclusive). Print the time $K$ minutes after 21:00 in the `HH:MM` format, where `HH` denotes the hour on the $24$-hour clock and `MM` denotes the minute. If the hour or the minute has just one digit, append a $0$ to the beginning to represent it as a $2$-digit integer.

AtCoder新手比赛通常在21:00开始,比赛持续100分钟。
给定一个整数K(0 < K < 100),请以HH:MM的格式输出比赛开始后K分钟的时间。其中HH表示24小时制的小时,MM表示分钟。如果小时或分钟只有一位数字,请在前面补0使其成为两位数。



输入

63

输出



Print the time $K$ minutes after 21:00 in the format specified in the Problem Statement.

样例输入 复制

63

样例输出 复制

22:03

提示

### Constraints

-   $K$ is an integer between $0$ and $100$ (inclusive).

K是一个整数,0≤K≤100

来源/分类