package main import ( "fmt" "bufio" "os" "strconv" "math" ) func check3 (a int) bool{ if a%3==0 { return true } for ;a > 0; a/= 10{ if a%10==3{ return true } } return false; } func main() { var x, y = nextInt(), nextInt() var x2, y2 = nextInt(), nextInt() if(x<0){ x *= -1 x2 *= -1 } if(y<0){ y *= -1 y2 *= -1 } if x==y && x2==y2 && x2