new field added

This commit is contained in:
Egor Matveev
2021-12-21 14:05:06 +03:00
parent 17573e1a76
commit 97a6fee997
1368 changed files with 988 additions and 3 deletions

2
solutions/48/1 Normal file
View File

@@ -0,0 +1,2 @@
1 2 3 4 5
4

1
solutions/48/1.a Normal file
View File

@@ -0,0 +1 @@
3

3
solutions/48/solution.py Normal file
View File

@@ -0,0 +1,3 @@
l = list(map(int, input().split()))
n = int(input())
print(l.index(n))