Update client.py

This commit is contained in:
LiYang 2020-07-09 08:21:57 +08:00 committed by GitHub
parent 2bfc1bab19
commit d35d7333fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -111,9 +111,10 @@ print(int(s1[0]) + int(s1[1]))"""
import "fmt" import "fmt"
func main() { func main() {
int a, b; a := 0
fmt.Scanf("%d %d", &a, &b); b := 0
fmt.Print("%d", a + b) fmt.Scanf("%d %d", &a, &b)
fmt.Printf("%d", a + b)
}""" }"""
client = JudgeServerClient(token=token, server_base_url="http://127.0.0.1:12358") client = JudgeServerClient(token=token, server_base_url="http://127.0.0.1:12358")