8 lines
89 B
C
8 lines
89 B
C
|
#include <stdio.h>
|
||
|
int main() {
|
||
|
|
||
|
int i;
|
||
|
int l = i * 2 + 1;
|
||
|
int r = i * 2 + 2;
|
||
|
return 0;
|
||
|
}
|