package main

func equal( a int ,  b int ) []bool {
    // write code here
    return []bool{&a == &b, a == b}
}