This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zaloguj się
kjhammerle
/
lonely-tiger
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Oczekujące zmiany
0
Wiki
Drzewo:
b6b83dfecd
Gałęzie
Tagi
master
lonely-tiger
/
tests
/
calc
/
sub
sub
105 B
Historia
Czysty
1
2
3
4
5
6
void main() {
print 0 - 5;
print 2 - 5 + 3 - 6;
print 2 - (5 + 3) - 6;
print -(7 - 8);
}