8 lines
129 B
Text
8 lines
129 B
Text
|
|
int main() {
|
||
|
|
int seconds = (int)Stdio.stdin->gets();
|
||
|
|
write("Sleeping...\n");
|
||
|
|
sleep(seconds);
|
||
|
|
write("Awake!\n");
|
||
|
|
return 0;
|
||
|
|
}
|