package con_level_1half; import java.util.Scanner; public class Con858 { public static void main(String[] args) { Scanner s = new Scanner(System.in); int A = s.nextInt() , B = s.nextInt(); s.close(); StringBuilder stb = new StringBuilder(); stb.append(A/B); stb.append("."); int r = A%B * 10; for(int i = 0;i < 50;i++){ stb.append(r/B); r = r%B * 10; } System.out.println(stb); } }