From e3c6c8b32a8e549c7d05959808ad9c23974f9d12 Mon Sep 17 00:00:00 2001 From: Gyubin Date: Tue, 12 Nov 2024 17:47:08 +0900 Subject: [PATCH] add: swea/21425.py --- swea/21425.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 swea/21425.py diff --git a/swea/21425.py b/swea/21425.py new file mode 100644 index 0000000..b8f99a6 --- /dev/null +++ b/swea/21425.py @@ -0,0 +1,14 @@ +t=int(input()) + +for _ in range(t): + count=0 + x,y,n=map(int,input().split()) + + while(x<=n and y<=n): + count+=1 + if(x