From 56ab91b757f7979aa2b6f4f7d8c81f7a829bf594 Mon Sep 17 00:00:00 2001 From: encryptau <116024681+encryptau@users.noreply.github.com> Date: Sun, 23 Oct 2022 12:52:49 +0530 Subject: [PATCH] Create hacktober2k22 --- hacktober2k22 | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hacktober2k22 diff --git a/hacktober2k22 b/hacktober2k22 new file mode 100644 index 0000000..a259dbb --- /dev/null +++ b/hacktober2k22 @@ -0,0 +1,6 @@ +a=list(map(int,input().split())) +count=0 +for i in a: + if i>=10: + count=count+1 +print(count)