Compare commits

..

No commits in common. "c3f6e61e674f0970f1b11064bf54a28e05f41f40" and "6f9e97b91c7e7c280ea0ee6e4f7bba1ada07c58c" have entirely different histories.

7 changed files with 0 additions and 24 deletions

View File

@ -1,8 +0,0 @@
#include<iostream>
using namespace std;
int main(){
int n;
cin>>n;
cout<<(n%10)<<(n/10%10)<<(n/100);
return 0;
}

Binary file not shown.

View File

@ -1,8 +0,0 @@
#include<iostream>
using namespace std;
int main(){
int n;
cin>>n;
cout<<(n%10)+(n/10%10)+(n/100);
return 0;
}

Binary file not shown.

View File

@ -1,8 +0,0 @@
#include<iostream>
using namespace std;
int main(){
int m;
cin>>m;
cout<<m/13<<" "<<m%13;
return 0;
}

Binary file not shown.

View File