화면에 안녕하세요 출력
C 언어
#include<stdio.h> int main(void){ printf("안녕하세요\n"); return 0; }
Python
print("안녕하세요")