TORONTO KIDS COMPUTER CLUB | Sunday 16:00 Python Homework 08.11
16443
post-template-default,single,single-post,postid-16443,single-format-standard,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

Sunday 16:00 Python Homework 08.11

18 Aug Sunday 16:00 Python Homework 08.11

Question:(please use function that return a value)

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?

The input consists of two integers, each on a separate line. The first line is the age Y of the youngest child. The second line is the age M of the middle child . The output will be the age of the oldest child.


Sample Input 1:
Age Y: 12
Age M: 15

Sample output 1:
Age O: 18


Sample Input 2:
Age Y: 10
AgeM: 10

Sample output 2:
Age O: 10

No Comments

Sorry, the comment form is closed at this time.