From 6fbf33d21cc86e96cbdd177ef13e668754815e17 Mon Sep 17 00:00:00 2001 From: ShazidMahsrafi Date: Fri, 21 Jul 2023 13:08:38 +0600 Subject: [PATCH] initial commit --- 1773F Football/1773F.cpp | 115 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 1773F Football/1773F.cpp diff --git a/1773F Football/1773F.cpp b/1773F Football/1773F.cpp new file mode 100644 index 0000000..b109bb7 --- /dev/null +++ b/1773F Football/1773F.cpp @@ -0,0 +1,115 @@ +#include +using namespace std; +using ll = long long; + + +void solve() +{ + int n,a,b; + cin>>n>>a>>b; + if(n==1) + { + if(a==b) + { + cout<<1<> TC; + //cin.ignore(); + while (TC--) solve(); +} \ No newline at end of file