Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.*;
- public class Main
- {
- static Scanner reader = new Scanner (System.in);
- /**
- * @param args
- */
- public static void main(String[] args)
- {
- int x = reader.nextInt();
- int y = reader.nextInt();
- int dist = reader.nextInt();
- Point p1 = new Point (x, y, dist);
- System.out.println(p1);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment