Question: how to answer this question using python3 Gaelic Score Task Write a Python script named gaelic-score.py when reads twq integers, first the number of goals
Gaelic Score Task Write a Python script named gaelic-score.py when reads twq integers, first the number of goals in a gaelic football match and then the number of points, and outputs the total score. Example input 3 4 Example output 13 Tips In Gaelic football, a goal is worth three points (and a point just one point of course). To read two integers, simply read the second one after reading the first, like this: int(input()) b- int(input()) a is the first number and b is the second number In your solution, of course, you should use more appropriate variable names
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
