initial commit

This commit is contained in:
2025-11-18 17:31:44 +01:00
commit 669709e6aa
70 changed files with 11141 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
program Test
{
void main()
int a;
{
read(a);
if (a == 1) { print('='); print('='); print(','); }
if (a != 1) { print('!'); print('='); print(','); }
if (a < 1) { print('<'); print(','); }
if (a <= 1) { print('<'); print('='); print(','); }
if (a > 1) { print('>'); print(','); }
if (a >= 1) { print('>'); print('='); print(','); }
}
}