fork download
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5. int a;
  6.  
  7. scanf("%d",&a);
  8.  
  9. if ( a > 10 )
  10. printf( "aは10より大きい\n ");
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5308KB
stdin
9
stdout
Standard output is empty