#B4000. Study Break Time

    ID: 11657 Type: Default 1000ms 256MiB

Study Break Time

Study Break Time

Xiaoyang plans to start studying at a designated time and will take a break after studying for \( k \) seconds. Determine the moment he starts his break.

If he starts studying at time \( s \), then his break will begin at time \( s + k \).

For example, if \( s = 1000 \) and \( k = 3600 \), then his break starts at \( 1000 + 3600 = 4600 \).

inputFormat

The input consists of a single line containing two space-separated integers \( s \) and \( k \), where \( s \) represents the study start time (in seconds) and \( k \) represents the duration (in seconds) after which Xiaoyang takes a break.

outputFormat

Output a single integer, which is the time (in seconds) when Xiaoyang begins his break.

sample

1000 3600
4600