package main import . "fmt" func main() { var x1,y1,x2,y2 int Scan(&x1,&y1,&x2,&y2) if x1*y1==x2*y2 { Println("Yes") } else { Println("No") } }