/** @file 169.cpp @title No.169 何分かかるの!? - yukicoder @url https://yukicoder.me/problems/no/169 **/ #include using namespace std; typedef long long LL; #define ALL(obj) (obj).begin(), (obj).end() #define REP(i, N) for (int i = 0; i < (N); ++i) int main() { int K; LL S; cin >> K >> S; cout << fixed<