mirror of
https://github.com/Noratrieb/website.git
synced 2026-01-14 08:55:01 +01:00
9 lines
111 B
C
9 lines
111 B
C
#include <stdio.h>
|
|
void conflict();
|
|
void usec();
|
|
void useb();
|
|
int main() {
|
|
usec();
|
|
useb();
|
|
conflict();
|
|
}
|