<ELSE Example Program>
Program else_example Integer :: i Read *, i Print *, 'even' Else Print *, 'odd' End Program
<Example input 1>
3
■ Execution Results
odd
<Example input 2>
4
■ Execution Results
even
Program else_example Integer :: i Read *, i Print *, 'even' Else Print *, 'odd' End Program
3
odd
4
even