Algorithms and Data Structures/Coding Practices
Kattis What is greater?
brightlightkim
2022. 7. 15. 12:10
Given two positive integers, determine whether the first one is larger than the second one.
Input
The single line of input contains two positive integers, a and b (0<a,b≤109).
Output
Output a single line with 1 if a>b, 0 otherwise.