fork download
  1. int main() {
  2. int x = 14;
  3. while(1) {
  4. if(x % 2) {
  5. printf("%d\n", x);
  6. }
  7. if(x++ == 156) {
  8. break;
  9. }
  10. }
  11. return 0;
  12. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
15
17
19
21
23
25
27
29
31
33
35
37
39
41
43
45
47
49
51
53
55
57
59
61
63
65
67
69
71
73
75
77
79
81
83
85
87
89
91
93
95
97
99
101
103
105
107
109
111
113
115
117
119
121
123
125
127
129
131
133
135
137
139
141
143
145
147
149
151
153
155