package main import "fmt" func main() { a, b := 0, 0 _, _ = fmt.Scan(&a, &b) fmt.Println(a + b) }