From ffdefe50462dff0ed2e44cf074b4b19670e7185b Mon Sep 17 00:00:00 2001 From: ShazidMahsrafi Date: Wed, 28 Jun 2023 02:38:26 +0600 Subject: [PATCH] initial commit --- 1818B Indivisible/1818B.cpp | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 1818B Indivisible/1818B.cpp diff --git a/1818B Indivisible/1818B.cpp b/1818B Indivisible/1818B.cpp new file mode 100644 index 0000000..6dea423 --- /dev/null +++ b/1818B Indivisible/1818B.cpp @@ -0,0 +1,30 @@ +#include +using namespace std; +using ll = long long; + +void solve() +{ + int n; + cin>>n; + if(n==1) cout<<"1"<> TC; + cin.ignore(); + while (TC--) solve(); +} \ No newline at end of file