Skip to content

Instantly share code, notes, and snippets.

@Hacv16
Created September 4, 2023 00:57
Show Gist options
  • Save Hacv16/30e46b84b29299b0c85198da0429ec7f to your computer and use it in GitHub Desktop.
Save Hacv16/30e46b84b29299b0c85198da0429ec7f to your computer and use it in GitHub Desktop.
#include <bits/stdc++.h>
using namespace std;
long long x, y, z, n;
int main()
{
cin >> x >> y >> z >> n;
cout << (x + y + z) % n << '\n';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment