summaryrefslogtreecommitdiff
path: root/tests/arithmetic.c
blob: 61951d86e19826e280b52d28f19ca885944ad3ab (plain)
1
2
3
4
5
6
7
8
9
10
int main() {
  int a = 5;
  int b = 3;
  int sum = a + b;
  int diff = a - b;
  int prod = a * b;
  int quot = a / b;
  int mod = a % b;
  return sum + diff + prod + quot + mod;
}