package main import ( "fmt" ) func main() { var A, B int var S string fmt.Scanf("%d %d", &A, &B) fmt.Scanf("%s", &S) fmt.Printf("%d %s", A + B, S) }