11 lines
98 B
C
11 lines
98 B
C
#include<stdio.h>
|
|
|
|
int main() {
|
|
int Δ = 1;
|
|
|
|
Δ++;
|
|
|
|
printf("%d",Δ);
|
|
|
|
return 0;
|
|
}
|