mirror of
https://github.com/lucaspalomodevelop/cpp_stuff.git
synced 2026-03-12 22:47:22 +00:00
14 lines
130 B
C++
14 lines
130 B
C++
#include <iostream>
|
|
|
|
#include "exercise.h"
|
|
|
|
int main()
|
|
{
|
|
int I = 5;
|
|
int J = 3;
|
|
|
|
mod_cross_sum(I, J);
|
|
|
|
return 0;
|
|
}
|