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)