보안을 그리다, 훈이

[Baekjoon/Python3] 17356번 욱 제 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 17356번 욱 제

HooNeee 2020. 12. 8. 18:08

[Baekjoon/Python3] 17356번 욱 제

 

www.acmicpc.net/problem/17356

 

17356번: 욱 제

욱의 욱제력과 제의 욱제력이 한 줄에 주어진다. 욱제력은 0 이상 5,000 이하의 정수이다.

www.acmicpc.net

 

a, b = map(int, input().split())
m = (b - a) / 400
print(1 / (1 + pow(10, m)))
Comments