← Home
Copy
```go package main import "fmt" func main() { var n, m int64 fmt.Scan(&n, &m) fmt.Println(2) } ```