백준 25238 가희와 방어율 무시
정수 2개를 받아 a를 b% 깎은 값이 100보다 큰지 여부 출력
a, b = map(int, input().split()) print(int(a*(100-b)/100<100))
print((a*(100-b)/100<100)+0)