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
1 changed files with 4 additions and 3 deletions

View File

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