{"raw_statement":[{"iden":"statement","content":"While watching the world cup, you wonder how many points your team has in the group stage. Recall that during the group stage teams are awarded three points for a win, one point for a tie, and zero points for a loss. For this problem, figure out how many group stage points your team has based on their record (wins, losses, and ties).\n\nThe only line of input contains three integers separated by hyphens (-). Each of these values represents how many wins, losses, and ties your team has had so far during the group stage, respectively.\n\nOutput a single integer _p_: the number of group stage points that your team currently has.\n\n"},{"iden":"input","content":"The only line of input contains three integers separated by hyphens (-). Each of these values represents how many wins, losses, and ties your team has had so far during the group stage, respectively."},{"iden":"output","content":"Output a single integer _p_: the number of group stage points that your team currently has."}],"translated_statement":null,"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ w, d, l \\in \\mathbb{Z}_{\\geq 0} $ denote the number of wins, draws (ties), and losses, respectively.\n\n**Constraints**  \nThe input is a triple $ (w, d, l) $, where each value is a non-negative integer.\n\n**Objective**  \nCompute the total points $ p $:  \n$$ p = 3w + 1d + 0l $$","simple_statement":"Given wins, losses, and ties, calculate total points: 3 points per win, 1 point per tie, 0 for losses.","has_page_source":false}