#include using namespace std; using lint = long long int; using pint = pair; using plint = pair; #define ALL(x) (x).begin(), (x).end() #define SZ(x) ((lint)(x).size()) #define POW2(n) (1LL << (n)) #define FOR(i, begin, end) for (int i = (begin), i##_end_ = (end); i < i##_end_; i++) #define IFOR(i, begin, end) for (int i = (end)-1, i##_begin_ = (begin); i >= i##_begin_; i--) #define REP(i, n) FOR(i, 0, n) #define IREP(i, n) IFOR(i, 0, n) int main() { lint a, b; cin >> a >> b; string s = ""; s += to_string(a / b); s += "."; lint ans, tmp; REP(i,50){ tmp = a % b; tmp *= 10; a = tmp; s += to_string(tmp / b); } cout<< s << "\n"; return 0; }