import sys
#divmod函数生成两个数的商和余数的元组,打印出来即可
a=int(input())
b=int(input())
c=divmod(a,b)
print("{} {}".format(c[0],c[1]))
print("%.2f" %(a/b))