13 lines
122 B
Go
13 lines
122 B
Go
|
package main
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
var (
|
||
|
input string
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
fmt.Scanf("%s", &input)
|
||
|
fmt.Println("Hello ", input)
|
||
|
}
|