Write a program that gives an answer to the following problem:
In a group there are three girls and two boys. If we have 5 more identical groups how many persons will there be?
I assume that you can see that the result will be 30, but now let Python do the job. Let the program add 3 and 2 and multiply it with 6. Do this in one line and store the result in a variable and then print the result.
def main(): # We must use parentheses or Python would multiply 2 and 6 and then add 3 result = (3 + 2) * 6 print("The result is", result) if __name__ == '__main__': main()