{"raw_statement":[{"iden":"statement","content":"Your favorite basketball player is the leading scorer in the country, and you want to know exactly how good they are. Points per game is measured as points divided by games played, and is used to rank leading scorers in basketball.\n\nThe first line of input contains a positive integer _p_ indicating the total points scored by the player so far during the season. The second line of input contains a positive integer _g_ indicating the total games played by the player so far during the season.\n\nOutput one decimal number _ppg_, the player's current points per game. This value can be calculated as _p_ / _g_\n\n"},{"iden":"input","content":"The first line of input contains a positive integer _p_ indicating the total points scored by the player so far during the season. The second line of input contains a positive integer _g_ indicating the total games played by the player so far during the season."},{"iden":"output","content":"Output one decimal number _ppg_, the player's current points per game. This value can be calculated as _p_ / _g_"},{"iden":"examples","content":"Input78\n7\nOutput11.142857142857142\nInput89\n15\nOutput5.933333333333334\n"}],"translated_statement":null,"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ p \\in \\mathbb{Z}^+ $ be the total points scored.  \nLet $ g \\in \\mathbb{Z}^+ $ be the total games played.  \n\n**Constraints**  \n$ p \\geq 1 $, $ g \\geq 1 $\n\n**Objective**  \nCompute the points per game:  \n$$ \\text{ppg} = \\frac{p}{g} $$","simple_statement":"Calculate and print the player's points per game: p divided by g.","has_page_source":false}