#include
using namespace std; int main() { int x = 5; int y = 2; cout << x % y; return 0; }
1