10 lines
122 B
C++
10 lines
122 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
int c = 2;
|
|
int b = c % 2.5;
|
|
|
|
return 0;
|
|
} |