12 lines
146 B
C
12 lines
146 B
C
#include <stdio.h>
|
|
|
|
// szybkie dodawanie
|
|
|
|
int main (void)
|
|
{
|
|
puts ("Hello World!");
|
|
int a = 0;
|
|
int b = 2;
|
|
int c = a + b;
|
|
return 0;
|
|
} |