#include using namespace std; int main() { // 1. 入力情報取得. int K, S; cin >> K >> S; // 2. 全体の処理時間(分)は? int ans = 100 * S / (100 - K); // 3. 後処理. cout << ans << endl; return 0; }