package main import "fmt" func main() { var w, h int64 fmt.Scan(&w, &h) ans := (w / 2) * ((w + 1) / 2) * (h / 2) * ((h + 1) / 2) fmt.Println(ans) }