0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-23 17:48:48 +00:00

#1. A + B 问题

https://loj.ac/s/1478041
This commit is contained in:
Baoshuo Ren 2022-06-08 11:09:44 +08:00
parent 5d15e35a46
commit 154526bcba
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

10
LibreOJ/1/1.go Normal file
View File

@ -0,0 +1,10 @@
package main
import "fmt"
func main() {
var a, b int
fmt.Scanln(&a, &b)
fmt.Println(a + b)
}