406096: GYM102267 A Picky Eater
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
A. Picky Eatertime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output
Once upon a time, Hamza was hungry, only leftover food could be found in the fridge, so he wanted to order online.
Hamza currently has $$$x$$$ JDs, and the sandwich he wants to buy costs $$$y$$$ JDs, can Hamza order food online or he has to face his biggest enemies, leftover food?
InputThe first and only line in the input contains exactly 2 space separated integers $$$x,y$$$($$$1 \le x,y \le 10$$$), the amount of money he has, and the cost of the sandwich.
OutputIf Hamza can buy the sandwich print "1"(on a single line without quotes), otherwise print "0"(on a single line without quotes).
ExamplesInput4 2Output
1Input
1 10Output
0Input
5 5Output
1