package main import "fmt" var ( input string ) func main() { fmt.Scanf("%s", &input) fmt.Println("Hello ", input) }