At a geometry lesson Gerald was given a task: to get vector B out of vector A. Besides, the teacher permitted him to perform the following operations with vector A:
Operations could be performed in any order any number of times.
Can Gerald cope with the task?
The first line contains integers x1 , y1 − the coordinates of the vector A (-108≤x1,y1≤108). The second and the third line contain in the similar manner vectors B and C (their coordinates are integers; their absolute value does not exceed 108).
Print "YES" (without the quotes) if it is possible to get vector B using the given operations. Otherwise print "NO" (without the quotes).
0 0
1 1
0 1
YES
0 0
1 1
1 1
YES
0 0
1 1
2 2
NO
难度等级: | 3 |
总通过次数: | 0 |
总提交次数: | 0 |