package main import ( "fmt" ) func main() { var a, b int var s string fmt.Scan(&a, &b, &s) fmt.Println(a + b, s) }