From 154526bcba511176d09d9a94bcd88fdc54a8d575 Mon Sep 17 00:00:00 2001 From: Baoshuo Date: Wed, 8 Jun 2022 11:09:44 +0800 Subject: [PATCH] =?UTF-8?q?#1.=20A=20+=20B=20=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://loj.ac/s/1478041 --- LibreOJ/1/1.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 LibreOJ/1/1.go diff --git a/LibreOJ/1/1.go b/LibreOJ/1/1.go new file mode 100644 index 00000000..4b1fba50 --- /dev/null +++ b/LibreOJ/1/1.go @@ -0,0 +1,10 @@ +package main + +import "fmt" + +func main() { + var a, b int + + fmt.Scanln(&a, &b) + fmt.Println(a + b) +}