diff --git a/1175A.py b/1175A.py index d972a82..f2322a5 100644 --- a/1175A.py +++ b/1175A.py @@ -1,7 +1,7 @@ #https://codeforces.com/problemset/problem/1175/A -a = int(input()) -for i in range(a): +num = int(input()) +for i in range(num): b, c = map(int, input().split()) q = 0 while(b != 0): @@ -11,4 +11,4 @@ if(aux > 0): q += 1 - print(q) \ No newline at end of file + print(q)