mirror of
https://github.com/m1ngsama/code4sk.git
synced 2025-12-24 10:51:22 +00:00
8 lines
99 B
C++
8 lines
99 B
C++
|
|
#include<stdio.h>
|
|
int main(){
|
|
int i=10, j=0;
|
|
if (j=0)i++; else i--;
|
|
printf("%d",i);
|
|
return 0;
|
|
}
|