mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 06:58:47 +00:00
11 lines
108 B
Go
11 lines
108 B
Go
|
package main
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func main() {
|
||
|
var a, b int
|
||
|
|
||
|
fmt.Scanln(&a, &b)
|
||
|
fmt.Println(a + b)
|
||
|
}
|