CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <iostream>
using namespace std;
int main() {
unsigned long long x=12345678912345678912;
unsigned long long
y=123456789123456789123;
unsigned long long
z=1234567891234567891234;
cout<<"i know this :"<<x<<endl;
cout<<"what is this:"<<y<<endl;
cout<<"and this :"<<z<<endl;
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run