8 lines
125 B
C++
8 lines
125 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
printf("%d",sizeof("Hello, World!"));
|
|
return 0;
|
|
} |