import java.util.*;
import java.lang.*;
import java.io.*;
// The main method must be in a class named "Main".
class Main {
public static void main(String[] args) {
double value=677084;
long factor = (long) Math.pow(10, 2);
value = value * factor;
long tmp = Math.round(value);
System.out.println((double) tmp / factor);
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: