Problem D.

Anonymous
c_cpp
01/25/2024 7:41 AM
204 B
33
Indexable
#include <bits/stdc++.h>

using namespace std;

int main() {
    int n, k;
    cin >> n >> k;
    cout << k % n;
    return 0;    
}





Editor is loading...
Leave a Comment