#include <stdio.h>#include <stdlib.h>
void main(){ int a = 10; int b = 3;
if (a>b) { printf("%d", a / b); } else { printf("%d", a%b); }
system("pause");}