HS/Round A Round
Round A Round - TEST
퐁스
2020. 4. 1. 15:20
def hello():
print('Hello, world!')
hello()
#include <stdio.h>
int main()
{
printf("Hello, world!\n");
return 0;
}
public class HelloWorld {
public static void main(String args[]) {
System.out.println("Hello World");
}
}