13 lines
210 B
C
13 lines
210 B
C
|
#include <stdio.h> //printf and shit
|
||
|
#include <math.h>
|
||
|
|
||
|
int fuck(int asd) {
|
||
|
return asd;
|
||
|
}
|
||
|
|
||
|
int main(){
|
||
|
int n = 0;
|
||
|
printf("%d %d\n", ++n, fuck(n)); //this is bad and shouldnt compile
|
||
|
return 0;
|
||
|
}
|