From 3e5da7ba6a525f97473cc1c96bac0306f2d3c43e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BD=A9=E8=BE=95=E9=BE=99=E5=84=BF?= Date: Wed, 26 Oct 2022 10:37:03 +0800 Subject: [PATCH] =?UTF-8?q?NP19=20=E5=88=97=E8=A1=A8=E7=9A=84=E9=95=BF?= =?UTF-8?q?=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- NP/NP19.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 NP/NP19.py diff --git a/NP/NP19.py b/NP/NP19.py new file mode 100644 index 0000000..0c34ca4 --- /dev/null +++ b/NP/NP19.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python3 +# @author 轩辕龙儿 +# @date 2022/10/26 +# @file NP19.py + +def solution(): + print(len(input().split())) + + +if __name__ == "__main__": + solution()