11 lines
102 B
C++
11 lines
102 B
C++
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
int x = 13;
|
|
x %= 7;
|
|
|
|
std::cout << x;
|
|
|
|
return 0;
|
|
} |