import java.awt.*; import java.lang.*; import java.util.*; public class Location { public int x; public int y; public double angle; Location(int x, int y, double angle) { this.x = x; this.y = y; this.angle = angle; } }