{"raw_statement":[{"iden":"problem statement","content":"In Japan, there are four major categories of ice cream type products:\n\n*   an ice cream type product with at least $15$ percent **milk solids** and at least $8$ percent **milk fat** is called an _ice cream_;\n*   an ice cream type product with at least $10$ percent **milk solids** and at least $3$ percent **milk fat** that is not an ice cream is called an _ice milk_;\n*   an ice cream type product with at least $3$ percent **milk solids** that is not an ice cream or an ice milk is called a _lacto ice_;\n*   an ice cream type product that is not an ice cream, an ice milk, or a lacto ice is called a _flavored ice_.\n\nHere, **milk solids** consist of **milk fat** and **milk solids-not-fat**.  \nAtCoder's famous product _Snuke Ice_ contains $A$ percent **milk solids-not-fat** and $B$ percent **milk fat**.  \nWhich of the categories above does Snuke Ice fall into?  \nPrint your answer as an integer according to the Output section."},{"iden":"constraints","content":"*   $0 \\le A \\le 100$\n*   $0 \\le B \\le 100$\n*   $A + B \\le 100$\n*   $A$ and $B$ are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$A$ $B$"},{"iden":"sample input 1","content":"10 8"},{"iden":"sample output 1","content":"1\n\nThis product contains $10$ percent milk solids-not-fat and $8$ percent milk fat, for a total of $18$ percent milk solids.  \nSince it contains not less than $15$ percent milk solids and not less than $8$ percent milk fat, it is an ice cream; the correct output is $1$."},{"iden":"sample input 2","content":"1 2"},{"iden":"sample output 2","content":"3\n\nSince it contains exactly $3$ percent milk solids, it is not an ice cream or an ice milk but is a lacto ice; the correct output is $3$."},{"iden":"sample input 3","content":"0 0"},{"iden":"sample output 3","content":"4\n\nIt is a flavored ice."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}