diff --git a/Projects/C++/find_remainder.cpp b/Projects/C++/find_remainder.cpp new file mode 100644 index 00000000..0709d315 --- /dev/null +++ b/Projects/C++/find_remainder.cpp @@ -0,0 +1,15 @@ +#include +using namespace std; +int main() +{ + int t; + cin>>t; + while(t--) + { + int a,b,rem; + cin>>a>>b; + rem=a%b; + cout<