From d35d7333fe9b94a5fc77657d35889d8dea8f5fde Mon Sep 17 00:00:00 2001 From: LiYang Date: Thu, 9 Jul 2020 08:21:57 +0800 Subject: [PATCH] Update client.py --- client/Python/client.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/client/Python/client.py b/client/Python/client.py index bb1925c..6d3947e 100644 --- a/client/Python/client.py +++ b/client/Python/client.py @@ -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")