Coding Test/백준
[백준/자바] 1008 - A/B
yurison
2023. 2. 28. 10:41
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
double A = sc.nextDouble();
double B = sc.nextDouble();
System.out.println(A/B);
sc.close();
}
}