From 8a8edc362cb14c3d00fcbd9bdf692816c9e6f66f Mon Sep 17 00:00:00 2001 From: Shazid Mashrafi Date: Sun, 13 Aug 2023 01:59:43 +0600 Subject: [PATCH] initial commit --- 1328A Divisibility Problem/1328A.cpp | 49 ++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 1328A Divisibility Problem/1328A.cpp diff --git a/1328A Divisibility Problem/1328A.cpp b/1328A Divisibility Problem/1328A.cpp new file mode 100644 index 0000000..8ba5e85 --- /dev/null +++ b/1328A Divisibility Problem/1328A.cpp @@ -0,0 +1,49 @@ +#include +using namespace std; + +#define ll long long +#define ul unsigned long long +#define pb push_back +#define ss second +#define ff first +#define fr(n) for(int i=0; i=0; i--) +#define nl '\n' +#define yes cout<<"YES"<>x>>y; + if(x%y) + cout<> TC; + while (TC--) solve(); +} \ No newline at end of file