xxxxxxxxxx
package main
import ("fmt")
func main() {
var i,j int
fmt.Print("Type two numbers: ")
fmt.Scanf("%v %v",&i, &j)
fmt.Println("Your numbers are:", i, "and", j)
}
// So, 1 2 in one line gives you 1 2. If 1 2 are in two lines, the result is 1 0.