import java.util.Scanner;
public class Comp2NoDec {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("Input first floatingpoint number: ");
double a = sc.nextDouble();
System.out.print("Input second floatingpoint number: ");
double b = sc.nextDouble();
input.close();
if (Math.abs(a - b) <= 0.01) {
System.out.println("These numbers are the same.");
}
else {
System.out.println("These numbers are different.");
}
}
}