14 lines
135 B
C
14 lines
135 B
C
|
#include "printlib.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
int x;
|
||
|
x = 0;
|
||
|
while (x < 4)
|
||
|
{
|
||
|
x = x + 1;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
// EXPECTED
|