// ※※※ 解答不能. ※※※ // 以下のソースコード参照. // nmnmnmnmnmnmnm氏. // https://yukicoder.me/submissions/293765 #include using namespace std; using LL = long long; int main(){ LL A, B; scanf("%lld %lld", &A, &B); printf("%lld", A / B); printf("%c", '.'); A %= B; for(int i = 0; i < 50; i++){ A *= 10; printf("%lld", A / B); A %= B; } return 0; }