3+2をpython javaとc++でプログラミングしてみ?

# python わあ簡単!
x,y = 3,2
print( x + y )


#java メンドクサイ奴
public class MyClass {
public static void main(String[] args) {
x=3;
y=2;
System.out.println(x+y);
}
}


#c++ メンドクサイ奴
#include <iostream>
using namespace std;
int main() {
int x = 2;
int y = 3;
cout << x + y << endl;
return 0;
}


これみるとどの言語を選ぶべきかは一目瞭然