Загрузка данных
package main import ( "fmt" ) func main() { var a int64 var b int64 fmt.Scanf("%v", &a) fmt.Scanf("%v", &b) fmt.Println(a + b) }