#ABC057A. Remaining Time

Remaining Time

题目描述

Dolphin loves programming contests. Today, he will take part in a contest in AtCoder.
In this country, 24-hour clock is used. For example, 9:009:00 p.m. is referred to as "2121 o'clock".
The current time is AA o'clock, and a contest will begin in exactly BB hours. When will the contest begin? Answer in 24-hour time.

海豚喜欢编程比赛。今天,他将参加 AtCoder 的竞赛。
在这个国家,使用的是 24 小时钟。例如,下午 9:009:00 时被称为" 2121 点"。
现在的时间是 AA 点,比赛将在整整 BB 小时后开始。比赛何时开始?用 24 小时时间回答。

输入格式

输入内容按以下格式标准输入:

AA BB

输出格式

打印比赛开始时间的小时数(24 小时制)。

样例 #1

样例输入 #1

9 12

样例输出 #1

21

样例 #2

样例输入 #2

19 0

样例输出 #2

19

样例 #3

样例输入 #3

23 2

样例输出 #3

1

说明

数据规模与约定

  • 0A,B230 \leq A,B \leq 23
  • AABB 都是整数。

样例 11 解释

在此输入中,当前时间为 99 时, 1212 小时后的 24 小时时间为 2121 时。

样例 22 解释

比赛刚刚开始

样例 33 解释

比赛将于次日 1 时开始。