#include int main(void){ int x, y; printf("整数を二つ入力してください: "); scanf("%d %d", &x, &y); if ( x+y == 18 ){ printf("成功!\n"); } return 0; }