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))