CCC '13 J1 - Next in line

View as PDF

Submit solution

Points: 3
Time limit: 3.0s
Memory limit: 256M

Problem type
Canadian Computing Competition: 2013 Stage 1, Junior #1

You know a family with three children. Their ages form an arithmetic sequence: the difference in ages between the middle child and youngest child is the same as the difference in ages between the oldest child and the middle child. For example, their ages could be 5, 10 and 15, since both adjacent pairs have a difference of 5 years.

Given the ages of the youngest and middle children, what is the age of the oldest child?

Input Specification

The input consists of two integers, each on a separate line. The first line is the age Y of the youngest child (0 \le Y \le 50). The second line is the age M of the middle child (Y \le M \le 50).

Output Specification

The output will be the age of the oldest child.

Sample Input 1

12
15

Output for Sample Input 1

18

Sample Input 2

10
10

Output for Sample Input 2

10

Comments


  • 5
    Dillonbutcool  commented on Jan. 10, 2024, 4:32 a.m.

    incredible work I was so sleepy and then I did this question and I erupted with pure joy, blessings be upon you!