#include main() { int a , b ; printf("please input 2 integers:\n"); scanf_s("%d%d", &a,&b); int n = a < b ? a : b; printf("%d\n", n); return 0;}