From ddcc4f280533f73d75e9ab1cee5f10230cf8e724 Mon Sep 17 00:00:00 2001 From: Mohammad Sharique <52289871+Sharique-stack@users.noreply.github.com> Date: Sat, 30 Oct 2021 16:46:10 +0530 Subject: [PATCH] Create COCONUT --- Programs/https:/www.codechef.com/JUNE21C/problems/COCONUT | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Programs/https:/www.codechef.com/JUNE21C/problems/COCONUT diff --git a/Programs/https:/www.codechef.com/JUNE21C/problems/COCONUT b/Programs/https:/www.codechef.com/JUNE21C/problems/COCONUT new file mode 100644 index 0000000..5e9da6e --- /dev/null +++ b/Programs/https:/www.codechef.com/JUNE21C/problems/COCONUT @@ -0,0 +1,8 @@ +# cook your dish here +for _ in range(int(input())): + Lis=list(map(int,input().split())) + A=Lis[0] + B=Lis[1] + C=Lis[2] + D=Lis[3] + print(int(C/A+D/B))